345 lines
3.8 MiB
345 lines
3.8 MiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>graphify - graphify-out/graph.html</title>
|
|
<script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
|
|
integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
|
|
crossorigin="anonymous"></script>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
|
|
#graph { flex: 1; }
|
|
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4e; display: flex; flex-direction: column; overflow: hidden; }
|
|
#search-wrap { padding: 12px; border-bottom: 1px solid #2a2a4e; }
|
|
#search { width: 100%; background: #0f0f1a; border: 1px solid #3a3a5e; color: #e0e0e0; padding: 7px 10px; border-radius: 6px; font-size: 13px; outline: none; }
|
|
#search:focus { border-color: #4E79A7; }
|
|
#search-results { max-height: 140px; overflow-y: auto; padding: 4px 12px; border-bottom: 1px solid #2a2a4e; display: none; }
|
|
.search-item { padding: 4px 6px; cursor: pointer; border-radius: 4px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
.search-item:hover { background: #2a2a4e; }
|
|
#info-panel { padding: 14px; border-bottom: 1px solid #2a2a4e; min-height: 140px; }
|
|
#info-panel h3 { font-size: 13px; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
#info-content { font-size: 13px; color: #ccc; line-height: 1.6; }
|
|
#info-content .field { margin-bottom: 5px; }
|
|
#info-content .field b { color: #e0e0e0; }
|
|
#info-content .empty { color: #555; font-style: italic; }
|
|
.neighbor-link { display: block; padding: 2px 6px; margin: 2px 0; border-radius: 3px; cursor: pointer; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 3px solid #333; }
|
|
.neighbor-link:hover { background: #2a2a4e; }
|
|
#neighbors-list { max-height: 160px; overflow-y: auto; margin-top: 4px; }
|
|
#legend-wrap { flex: 1; overflow-y: auto; padding: 12px; }
|
|
#legend-wrap h3 { font-size: 13px; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
|
|
.legend-item { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; border-radius: 4px; font-size: 12px; }
|
|
.legend-item:hover { background: #2a2a4e; padding-left: 4px; }
|
|
.legend-item.dimmed { opacity: 0.35; }
|
|
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
|
|
.legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.legend-count { color: #666; font-size: 11px; }
|
|
#stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
|
|
#legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
|
|
#legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
|
|
#legend-controls label:hover { color: #e0e0e0; }
|
|
.legend-cb, #select-all-cb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; border: 1.5px solid #3a3a5e; border-radius: 3px; background: #0f0f1a; cursor: pointer; position: relative; flex-shrink: 0; }
|
|
.legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
|
|
.legend-cb:checked::after, #select-all-cb:checked::after { content: ''; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
|
|
#select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
|
|
#select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="graph"></div>
|
|
<div id="sidebar">
|
|
<div id="search-wrap">
|
|
<input id="search" type="text" placeholder="Search nodes..." autocomplete="off">
|
|
<div id="search-results"></div>
|
|
</div>
|
|
<div id="info-panel">
|
|
<h3>Node Info</h3>
|
|
<div id="info-content"><span class="empty">Click a node to inspect it</span></div>
|
|
</div>
|
|
<div id="legend-wrap">
|
|
<h3>Communities</h3>
|
|
<div id="legend-controls">
|
|
<label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
|
|
</div>
|
|
<div id="legend"></div>
|
|
</div>
|
|
<div id="stats">4304 nodes · 7953 edges · 327 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "ai_agency_orchestrate", "label": "orchestrate.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "orchestrate.py", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 8}, {"id": "ai_agency_orchestrate_load_json", "label": "load_json()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "load_json()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 5}, {"id": "ai_agency_orchestrate_save_json", "label": "save_json()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "save_json()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "ai_agency_orchestrate_cmd_status", "label": "cmd_status()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_status()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "ai_agency_orchestrate_cmd_progress", "label": "cmd_progress()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_progress()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "ai_agency_orchestrate_cmd_next_task", "label": "cmd_next_task()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_next_task()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "ai_agency_orchestrate_cmd_unblock", "label": "cmd_unblock()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_unblock()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 4}, {"id": "ai_agency_orchestrate_cmd_reset", "label": "cmd_reset()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_reset()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "ai_agency_orchestrate_main", "label": "main()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 132, "community_name": "orchestrate.py", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 6}, {"id": "gitea_scripts_with_vpn", "label": "with-vpn.sh", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "with-vpn.sh", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 6}, {"id": "gitea_scripts_with_vpn_sh__entry", "label": "with-vpn.sh script", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "with-vpn.sh script", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 3}, {"id": "gitea_scripts_with_vpn_log", "label": "log()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "log()", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 5}, {"id": "gitea_scripts_with_vpn_vpn_is_up", "label": "vpn_is_up()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vpn_is_up()", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 2}, {"id": "gitea_scripts_with_vpn_start_vpn", "label": "start_vpn()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "start_vpn()", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 4}, {"id": "gitea_scripts_with_vpn_stop_vpn", "label": "stop_vpn()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "stop_vpn()", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 3}, {"id": "gitea_scripts_with_vpn_cleanup", "label": "cleanup()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cleanup()", "community": 159, "community_name": "with-vpn.sh", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 3}, {"id": "backend_eslint_config", "label": "backend/eslint.config.mjs", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "backend/eslint.config.mjs", "community": 260, "community_name": "backend/eslint.config.mjs", "source_file": "backend/eslint.config.mjs", "file_type": "code", "degree": 0}, {"id": "backend_nest_cli", "label": "nest-cli.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "nest-cli.json", "community": 162, "community_name": "nest-cli.json", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 4}, {"id": "backend_nest_cli_schema", "label": "$schema", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "$schema", "community": 162, "community_name": "nest-cli.json", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_collection", "label": "collection", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "collection", "community": 162, "community_name": "nest-cli.json", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_sourceroot", "label": "sourceRoot", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceRoot", "community": 162, "community_name": "nest-cli.json", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_compileroptions", "label": "compilerOptions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 162, "community_name": "nest-cli.json", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 2}, {"id": "backend_nest_cli_compileroptions_deleteoutdir", "label": "deleteOutDir", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteOutDir", "community": 162, "community_name": "nest-cli.json", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_package", "label": "backend/package.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "backend/package.json", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 11}, {"id": "backend_package_name", "label": "name", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_version", "label": "version", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_description", "label": "description", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "description", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_author", "label": "author", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "author", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_private", "label": "private", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_license", "label": "license", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "license", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts", "label": "scripts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 15}, {"id": "backend_package_scripts_build", "label": "build", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_build_nest", "label": "build:nest", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:nest", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start", "label": "start", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_dev", "label": "start:dev", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start:dev", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_debug", "label": "start:debug", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start:debug", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_prod", "label": "start:prod", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start:prod", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_lint", "label": "lint", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test", "label": "test", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_watch", "label": "test:watch", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:watch", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_cov", "label": "test:cov", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:cov", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_debug", "label": "test:debug", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:debug", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_e2e", "label": "test:e2e", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:e2e", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_docs_generate", "label": "docs:generate", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "docs:generate", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_seo_backfill", "label": "seo:backfill", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seo:backfill", "community": 98, "community_name": "scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies", "label": "dependencies", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 22}, {"id": "backend_package_dependencies_nestjs_common", "label": "@nestjs/common", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/common", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_common", "label": "@nestjs/common", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/common", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_core", "label": "@nestjs/core", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/core", "community": 232, "community_name": "@nestjs/core", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_core", "label": "@nestjs/core", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/core", "community": 232, "community_name": "@nestjs/core", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_jwt", "label": "@nestjs/jwt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/jwt", "community": 233, "community_name": "@nestjs/jwt", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_jwt", "label": "@nestjs/jwt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/jwt", "community": 233, "community_name": "@nestjs/jwt", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_passport", "label": "@nestjs/passport", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/passport", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_passport", "label": "@nestjs/passport", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/passport", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_platform_express", "label": "@nestjs/platform-express", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/platform-express", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_platform_express", "label": "@nestjs/platform-express", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/platform-express", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_swagger", "label": "@nestjs/swagger", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/swagger", "community": 265, "community_name": "@nestjs/swagger", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_swagger", "label": "@nestjs/swagger", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/swagger", "community": 265, "community_name": "@nestjs/swagger", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_throttler", "label": "@nestjs/throttler", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/throttler", "community": 269, "community_name": "@nestjs/throttler", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_throttler", "label": "@nestjs/throttler", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/throttler", "community": 269, "community_name": "@nestjs/throttler", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_prisma_client", "label": "@prisma/client", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/client", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "prisma_client", "label": "@prisma/client", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/client", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_bcrypt", "label": "bcrypt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bcrypt", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "bcrypt", "label": "bcrypt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bcrypt", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_bcryptjs", "label": "bcryptjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bcryptjs", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "bcryptjs", "label": "bcryptjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bcryptjs", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_class_transformer", "label": "class-transformer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "class-transformer", "community": 149, "community_name": "class-transformer", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "class_transformer", "label": "class-transformer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "class-transformer", "community": 149, "community_name": "class-transformer", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_class_validator", "label": "class-validator", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "class-validator", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "class_validator", "label": "class-validator", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "class-validator", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_compression", "label": "compression", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "compression", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "compression", "label": "compression", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "compression", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_helmet", "label": "helmet", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "helmet", "community": 151, "community_name": "helmet", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "helmet", "label": "helmet", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "helmet", "community": 151, "community_name": "helmet", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_ioredis", "label": "ioredis", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ioredis", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "ioredis", "label": "ioredis", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ioredis", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_js_yaml", "label": "js-yaml", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "js-yaml", "community": 220, "community_name": "js-yaml", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "js_yaml", "label": "js-yaml", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "js-yaml", "community": 220, "community_name": "js-yaml", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_passport", "label": "passport", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "passport", "community": 295, "community_name": "passport", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "passport", "label": "passport", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "passport", "community": 295, "community_name": "passport", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_passport_jwt", "label": "passport-jwt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "passport-jwt", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "passport_jwt", "label": "passport-jwt", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "passport-jwt", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_reflect_metadata", "label": "reflect-metadata", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "reflect-metadata", "community": 296, "community_name": "reflect-metadata", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "reflect_metadata", "label": "reflect-metadata", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "reflect-metadata", "community": 296, "community_name": "reflect-metadata", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_rxjs", "label": "rxjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "rxjs", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "rxjs", "label": "rxjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rxjs", "community": 63, "community_name": "dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_swagger_ui_express", "label": "swagger-ui-express", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "swagger-ui-express", "community": 301, "community_name": "swagger-ui-express", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "swagger_ui_express", "label": "swagger-ui-express", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "swagger-ui-express", "community": 301, "community_name": "swagger-ui-express", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies", "label": "devDependencies", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 31}, {"id": "backend_package_devdependencies_eslint_eslintrc", "label": "@eslint/eslintrc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/eslintrc", "community": 304, "community_name": "@eslint/eslintrc", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_eslintrc", "label": "@eslint/eslintrc", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/eslintrc", "community": 304, "community_name": "@eslint/eslintrc", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_eslint_js", "label": "@eslint/js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 152, "community_name": "@eslint/js", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_eslint_js", "label": "@eslint/js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 152, "community_name": "@eslint/js", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_cli", "label": "@nestjs/cli", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/cli", "community": 308, "community_name": "@nestjs/cli", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_cli", "label": "@nestjs/cli", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/cli", "community": 308, "community_name": "@nestjs/cli", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_schematics", "label": "@nestjs/schematics", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/schematics", "community": 303, "community_name": "@nestjs/schematics", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_schematics", "label": "@nestjs/schematics", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/schematics", "community": 303, "community_name": "@nestjs/schematics", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_testing", "label": "@nestjs/testing", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/testing", "community": 313, "community_name": "@nestjs/testing", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_testing", "label": "@nestjs/testing", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/testing", "community": 313, "community_name": "@nestjs/testing", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_bcrypt", "label": "@types/bcrypt", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcrypt", "community": 239, "community_name": "@types/bcrypt", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_bcrypt", "label": "@types/bcrypt", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcrypt", "community": 239, "community_name": "@types/bcrypt", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_bcryptjs", "label": "@types/bcryptjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcryptjs", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_bcryptjs", "label": "@types/bcryptjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcryptjs", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_compression", "label": "@types/compression", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/compression", "community": 264, "community_name": "@types/compression", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_compression", "label": "@types/compression", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/compression", "community": 264, "community_name": "@types/compression", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_express", "label": "@types/express", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/express", "community": 266, "community_name": "@types/express", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_express", "label": "@types/express", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/express", "community": 266, "community_name": "@types/express", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_jest", "label": "@types/jest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/jest", "community": 267, "community_name": "@types/jest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_jest", "label": "@types/jest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/jest", "community": 267, "community_name": "@types/jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_js_yaml", "label": "@types/js-yaml", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/js-yaml", "community": 319, "community_name": "@types/js-yaml", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_js_yaml", "label": "@types/js-yaml", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/js-yaml", "community": 319, "community_name": "@types/js-yaml", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_multer", "label": "@types/multer", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/multer", "community": 268, "community_name": "@types/multer", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_multer", "label": "@types/multer", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/multer", "community": 268, "community_name": "@types/multer", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_types_node", "label": "@types/node", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_passport_jwt", "label": "@types/passport-jwt", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/passport-jwt", "community": 312, "community_name": "@types/passport-jwt", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_passport_jwt", "label": "@types/passport-jwt", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/passport-jwt", "community": 312, "community_name": "@types/passport-jwt", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_supertest", "label": "@types/supertest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/supertest", "community": 320, "community_name": "@types/supertest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_supertest", "label": "@types/supertest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/supertest", "community": 320, "community_name": "@types/supertest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_eslint_config_prettier", "label": "eslint-config-prettier", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-prettier", "community": 177, "community_name": "eslint-config-prettier", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_config_prettier", "label": "eslint-config-prettier", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-prettier", "community": 177, "community_name": "eslint-config-prettier", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_eslint_plugin_prettier", "label": "eslint-plugin-prettier", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-prettier", "community": 305, "community_name": "eslint-plugin-prettier", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_plugin_prettier", "label": "eslint-plugin-prettier", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-prettier", "community": 305, "community_name": "eslint-plugin-prettier", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_globals", "label": "globals", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 307, "community_name": "globals", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_globals", "label": "globals", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 307, "community_name": "globals", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_jest", "label": "jest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jest", "community": 311, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "jest", "label": "jest", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jest", "community": 311, "community_name": "jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_prettier", "label": "prettier", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prettier", "community": 314, "community_name": "prettier", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "prettier", "label": "prettier", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prettier", "community": 314, "community_name": "prettier", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_prisma", "label": "prisma", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 199, "community_name": "prisma", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "prisma", "label": "prisma", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 199, "community_name": "prisma", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_source_map_support", "label": "source-map-support", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "source-map-support", "community": 234, "community_name": "source-map-support", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "source_map_support", "label": "source-map-support", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "source-map-support", "community": 234, "community_name": "source-map-support", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_supertest", "label": "supertest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "supertest", "community": 240, "community_name": "supertest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "supertest", "label": "supertest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "supertest", "community": 240, "community_name": "supertest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_ts_jest", "label": "ts-jest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-jest", "community": 316, "community_name": "ts-jest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "ts_jest", "label": "ts-jest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-jest", "community": 316, "community_name": "ts-jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_ts_loader", "label": "ts-loader", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-loader", "community": 235, "community_name": "ts-loader", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "ts_loader", "label": "ts-loader", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-loader", "community": 235, "community_name": "ts-loader", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_ts_node", "label": "ts-node", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-node", "community": 236, "community_name": "ts-node", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "ts_node", "label": "ts-node", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-node", "community": 236, "community_name": "ts-node", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_tsconfig_paths", "label": "tsconfig-paths", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig-paths", "community": 237, "community_name": "tsconfig-paths", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "tsconfig_paths", "label": "tsconfig-paths", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig-paths", "community": 237, "community_name": "tsconfig-paths", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_typescript", "label": "typescript", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 9, "community_name": "devDependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_typescript_eslint", "label": "typescript-eslint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 323, "community_name": "typescript-eslint", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_typescript_eslint", "label": "typescript-eslint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 323, "community_name": "typescript-eslint", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_jest", "label": "jest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "jest", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 8}, {"id": "backend_package_jest_modulefileextensions", "label": "moduleFileExtensions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleFileExtensions", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 4}, {"id": "ref_js", "label": "js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "js", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ref_json", "label": "json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "json", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_json_ref_ts", "label": "ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ts", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_jest_rootdir", "label": "rootDir", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rootDir", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_testregex", "label": "testRegex", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "testRegex", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_transform", "label": "transform", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "transform", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_transform_t_j_s", "label": "^.+\\\\.(t|j)s$", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "^.+\\\\.(t|j)s$", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_collectcoveragefrom", "label": "collectCoverageFrom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "collectCoverageFrom", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "ref_t_j_s", "label": "**/*.(t|j)s", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.(t|j)s", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_jest_coveragedirectory", "label": "coverageDirectory", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "coverageDirectory", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_testenvironment", "label": "testEnvironment", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "testEnvironment", "community": 102, "community_name": "jest", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_prisma", "label": "prisma", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_prisma_seed", "label": "seed", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seed", "community": 133, "community_name": "backend/package.json", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_migrations_20260526145407_init_migration", "label": "20260526145407_init/migration.sql", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "20260526145407_init/migration.sql", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 14}, {"id": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "\"users\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ""users"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 5}, {"id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", "label": "\"user_addresses\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""user_addresses"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", "label": "\"wallet_transactions\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""wallet_transactions"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_products", "label": "\"products\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ""products"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 5}, {"id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", "label": "\"product_ingredients\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""product_ingredients"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", "label": "\"product_symptoms\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""product_symptoms"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_pets", "label": "\"pets\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ""pets"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 5}, {"id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", "label": "\"pet_medical_conditions\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""pet_medical_conditions"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_reminders", "label": "\"reminders\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ""reminders"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 4}, {"id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", "label": "\"reminder_completions\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""reminder_completions"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_health_logs", "label": "\"health_logs\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""health_logs"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_coupons", "label": "\"coupons\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ""coupons"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_orders", "label": "\"orders\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ""orders"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 4}, {"id": "backend_prisma_migrations_20260526145407_init_migration_order_items", "label": "\"order_items\"", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ""order_items"", "community": 90, "community_name": "20260526145407_init/migration.sql", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 3}, {"id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "community": 231, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", "label": "\"ui_texts\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ""ui_texts"", "community": 231, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "file_type": "code", "degree": 1}, {"id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", "label": "\"scientific_terms\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ""scientific_terms"", "community": 231, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "file_type": "code", "degree": 1}, {"id": "backend_prisma_scientificterms", "label": "prisma/scientificTerms.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma/scientificTerms.ts", "community": 205, "community_name": "prisma/scientificTerms.ts", "source_file": "backend/prisma/scientificTerms.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_scientificterms_scientificterm", "label": "ScientificTerm", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTerm", "community": 205, "community_name": "prisma/scientificTerms.ts", "source_file": "backend/prisma/scientificTerms.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_scientificterms_scientific_terms", "label": "SCIENTIFIC_TERMS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SCIENTIFIC_TERMS", "community": 205, "community_name": "prisma/scientificTerms.ts", "source_file": "backend/prisma/scientificTerms.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_blogs", "label": "seed-blogs.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-blogs.ts", "community": 206, "community_name": "seed-blogs.ts", "source_file": "backend/prisma/seed-blogs.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_blogs_prisma", "label": "prisma", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 206, "community_name": "seed-blogs.ts", "source_file": "backend/prisma/seed-blogs.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_blogs_main", "label": "main()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 206, "community_name": "seed-blogs.ts", "source_file": "backend/prisma/seed-blogs.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_custom", "label": "seed-custom.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-custom.ts", "community": 207, "community_name": "seed-custom.ts", "source_file": "backend/prisma/seed-custom.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_custom_prisma", "label": "prisma", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 207, "community_name": "seed-custom.ts", "source_file": "backend/prisma/seed-custom.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_custom_main", "label": "main()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 207, "community_name": "seed-custom.ts", "source_file": "backend/prisma/seed-custom.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_home", "label": "seed-home.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-home.ts", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-home.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_home_prisma", "label": "prisma", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-home.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_home_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-home.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_products", "label": "seed-products.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-products.ts", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 10}, {"id": "backend_prisma_seed_products_prisma", "label": "prisma", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_products_slugify", "label": "slugify()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "slugify()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_determinesuitablefor", "label": "determineSuitableFor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "determineSuitableFor()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_parsesize", "label": "parseSize()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "parseSize()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_getproductimageurl", "label": "getProductImageUrl()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getProductImageUrl()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_findorcreatecategory", "label": "findOrCreateCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "findOrCreateCategory()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_product_symptoms_map", "label": "PRODUCT_SYMPTOMS_MAP", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRODUCT_SYMPTOMS_MAP", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_products_product_taglines_map", "label": "PRODUCT_TAGLINES_MAP", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRODUCT_TAGLINES_MAP", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_products_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 6}, {"id": "backend_prisma_seed_ui_texts", "label": "seed-ui-texts.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-ui-texts.ts", "community": 186, "community_name": "seed-ui-texts.ts", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_ui_texts_prisma", "label": "prisma", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 186, "community_name": "seed-ui-texts.ts", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_ui_texts_ui_texts", "label": "UI_TEXTS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UI_TEXTS", "community": 186, "community_name": "seed-ui-texts.ts", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_ui_texts_main", "label": "main()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 186, "community_name": "seed-ui-texts.ts", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_wiki", "label": "seed-wiki.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-wiki.ts", "community": 187, "community_name": "seed-wiki.ts", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_wiki_prisma", "label": "prisma", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 187, "community_name": "seed-wiki.ts", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_wiki_canonical_wiki_terms", "label": "CANONICAL_WIKI_TERMS", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CANONICAL_WIKI_TERMS", "community": 187, "community_name": "seed-wiki.ts", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_wiki_main", "label": "main()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 187, "community_name": "seed-wiki.ts", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed", "label": "seed.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "seed.ts", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_prisma", "label": "prisma", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_main", "label": "main()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 89, "community_name": "seed-products.ts", "source_file": "backend/prisma/seed.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_tsconfig", "label": "prisma/tsconfig.json", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma/tsconfig.json", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 2}, {"id": "backend_prisma_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 6}, {"id": "backend_prisma_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_compileroptions_types", "label": "types", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 2}, {"id": "backend_prisma_tsconfig_json_ref_node", "label": "node", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "backend_prisma_tsconfig_include", "label": "include", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "code", "degree": 2}, {"id": "backend_prisma_tsconfig_json_ref_ts", "label": "./**/*.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "./**/*.ts", "community": 119, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "backend_prisma_tsconfig_seed", "label": "tsconfig.seed.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.seed.json", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 2}, {"id": "backend_prisma_tsconfig_seed_compileroptions", "label": "compilerOptions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 6}, {"id": "backend_prisma_tsconfig_seed_compileroptions_module", "label": "module", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_types", "label": "types", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 2}, {"id": "backend_prisma_tsconfig_seed_json_ref_node", "label": "node", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "concept", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_include", "label": "include", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 2}, {"id": "backend_prisma_tsconfig_seed_json_ref_ts", "label": "./**/*.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "./**/*.ts", "community": 120, "community_name": "compilerOptions", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "concept", "degree": 1}, {"id": "backend_scripts_generate_openapi_d", "label": "generate-openapi.d.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "generate-openapi.d.ts", "community": 263, "community_name": "generate-openapi.d.ts", "source_file": "backend/scripts/generate-openapi.d.ts", "file_type": "code", "degree": 0}, {"id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "label": "generate-openapi.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "generate-openapi.js", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 8}, {"id": "backend_scripts_generate_openapi_core_1", "label": "core_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "core_1", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_app_module_1", "label": "app_module_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "app_module_1", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_swagger_1", "label": "swagger_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "swagger_1", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_fs", "label": "fs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fs", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_path", "label": "path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "path", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_yaml", "label": "yaml", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "yaml", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", "label": "generateOpenApi()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateOpenApi()", "community": 143, "community_name": "generate-openapi.js", "source_file": "backend/scripts/generate-openapi.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", "label": "generate-openapi.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generate-openapi.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/scripts/generate-openapi.ts", "file_type": "code", "degree": 3}, {"id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", "label": "generateOpenApi()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generateOpenApi()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/scripts/generate-openapi.ts", "file_type": "code", "degree": 1}, {"id": "backend_scripts_seo_backfill", "label": "seo-backfill.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "seo-backfill.ts", "community": 155, "community_name": "seo-backfill.ts", "source_file": "backend/scripts/seo-backfill.ts", "file_type": "code", "degree": 3}, {"id": "backend_scripts_seo_backfill_prisma", "label": "prisma", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 155, "community_name": "seo-backfill.ts", "source_file": "backend/scripts/seo-backfill.ts", "file_type": "code", "degree": 1}, {"id": "backend_scripts_seo_backfill_striphtml", "label": "stripHtml()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "stripHtml()", "community": 155, "community_name": "seo-backfill.ts", "source_file": "backend/scripts/seo-backfill.ts", "file_type": "code", "degree": 2}, {"id": "backend_scripts_seo_backfill_runseobackfill", "label": "runSeoBackfill()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "runSeoBackfill()", "community": 155, "community_name": "seo-backfill.ts", "source_file": "backend/scripts/seo-backfill.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_controller_spec", "label": "admin.controller.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "admin.controller.spec.ts", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller", "label": "admin.controller.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.controller.ts", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 21}, {"id": "backend_src_admin_admin_controller_admincontroller", "label": "AdminController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.8, "font": {"size": 12, "color": "#ffffff"}, "title": "AdminController", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 39}, {"id": "backend_src_admin_admin_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 10}, {"id": "backend_src_admin_admin_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiOperation", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 31}, {"id": "backend_src_admin_admin_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_ts_query", "label": "Query", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 122, "community_name": "Body", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_admin_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Body", "community": 122, "community_name": "Body", "source_file": "", "file_type": "code", "degree": 17}, {"id": "backend_src_admin_admin_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 22, "community_name": "AdminService", "source_file": "", "file_type": "code", "degree": 15}, {"id": "backend_src_admin_admin_controller_ts_put", "label": "Put", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 122, "community_name": "Body", "source_file": "", "file_type": "code", "degree": 9}, {"id": "backend_src_admin_admin_controller_ts_delete", "label": "Delete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 22, "community_name": "AdminService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "label": ".getDashboardStats()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDashboardStats()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_getusers", "label": ".getUsers()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUsers()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_createuser", "label": ".createUser()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createUser()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "label": ".getUserDetails()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserDetails()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_updateuser", "label": ".updateUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUser()", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_deleteuser", "label": ".deleteUser()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteUser()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "label": ".updateUserRole()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUserRole()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "label": ".adjustWallet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".adjustWallet()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_getproducts", "label": ".getProducts()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProducts()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_createproduct", "label": ".createProduct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createProduct()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_updateproduct", "label": ".updateProduct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProduct()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "label": ".deleteProduct()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteProduct()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", "label": ".getPricingSettings()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPricingSettings()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "label": ".updatePricingSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updatePricingSettings()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "label": ".applyGlobalMargins()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".applyGlobalMargins()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "label": ".bulkPriceAdjustment()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".bulkPriceAdjustment()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_getorders", "label": ".getOrders()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrders()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "label": ".getOrderById()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrderById()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "label": ".updateOrderStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateOrderStatus()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "label": ".refundOrderToWallet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".refundOrderToWallet()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_getcoupons", "label": ".getCoupons()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCoupons()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_createcoupon", "label": ".createCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCoupon()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "label": ".updateCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCoupon()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "label": ".toggleCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleCoupon()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "label": ".deleteCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCoupon()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_getdoctors", "label": ".getDoctors()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDoctors()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_createdoctor", "label": ".createDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".createDoctor()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "label": ".updateDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDoctor()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "label": ".deleteDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteDoctor()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_getsettings", "label": ".getSettings()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSettings()", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_updatesettings", "label": ".updateSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSettings()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_module", "label": "admin.module.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.module.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/admin.module.ts", "file_type": "code", "degree": 45}, {"id": "backend_src_admin_admin_module_adminmodule", "label": "AdminModule", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminModule", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/admin.module.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_module_ts_module", "label": "Module", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_spec", "label": "admin.service.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "admin.service.spec.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/admin/admin.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_admin_service", "label": "admin.service.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.service.ts", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 35}, {"id": "backend_src_admin_admin_service_paginationquery", "label": "PaginationQuery", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationQuery", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_coupontargetinput", "label": "CouponTargetInput", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponTargetInput", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_couponinput", "label": "CouponInput", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponInput", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_service_adminservice", "label": "AdminService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.1, "font": {"size": 12, "color": "#ffffff"}, "title": "AdminService", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 40}, {"id": "backend_src_admin_admin_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 22, "community_name": "AdminService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_ts_optional", "label": "Optional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Optional", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_adminservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_service_adminservice_getdashboardstats", "label": ".getDashboardStats()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDashboardStats()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_getusers", "label": ".getUsers()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUsers()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getuserdetails", "label": ".getUserDetails()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserDetails()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_createuser", "label": ".createUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createUser()", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_service_adminservice_updateuser", "label": ".updateUser()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUser()", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_service_adminservice_updateuserrole", "label": ".updateUserRole()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUserRole()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_deleteuser", "label": ".deleteUser()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteUser()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getproducts", "label": ".getProducts()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProducts()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_createproduct", "label": ".createProduct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createProduct()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_service_adminservice_updateproduct", "label": ".updateProduct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProduct()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_service_adminservice_deleteproduct", "label": ".deleteProduct()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteProduct()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_getorders", "label": ".getOrders()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrders()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getorderbyid", "label": ".getOrderById()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrderById()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_updateorderstatus", "label": ".updateOrderStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateOrderStatus()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_refundordertowallet", "label": ".refundOrderToWallet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".refundOrderToWallet()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_getcoupons", "label": ".getCoupons()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCoupons()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_createcoupon", "label": ".createCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCoupon()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_updatecoupon", "label": ".updateCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCoupon()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_togglecoupon", "label": ".toggleCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleCoupon()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_deletecoupon", "label": ".deleteCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCoupon()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getsettings", "label": ".getSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSettings()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_updatesettings", "label": ".updateSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSettings()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getpets", "label": ".getPets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPets()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_adminservice_getdoctors", "label": ".getDoctors()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDoctors()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_createdoctor", "label": ".createDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createDoctor()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_updatedoctor", "label": ".updateDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDoctor()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_deletedoctor", "label": ".deleteDoctor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteDoctor()", "community": 22, "community_name": "AdminService", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "label": ".adjustUserWallet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".adjustUserWallet()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_getpricingsettings", "label": ".getPricingSettings()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPricingSettings()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_service_adminservice_updatepricingsettings", "label": ".updatePricingSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updatePricingSettings()", "community": 122, "community_name": "Body", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "label": ".applyGlobalMargins()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".applyGlobalMargins()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "label": ".bulkPriceAdjustment()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".bulkPriceAdjustment()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_api_keys_controller", "label": "api-keys.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "api-keys.controller.ts", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_api_keys_controller_apikeyscontroller", "label": "ApiKeysController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeysController", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_api_keys_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_api_keys_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_patch", "label": "Patch", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_api_keys_controller_ts_delete", "label": "Delete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 2, "community_name": "ApiResponse", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_controller_apikeyscontroller_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_api_keys_controller_apikeyscontroller_findall", "label": ".findAll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "label": ".create()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_api_keys_controller_apikeyscontroller_togglestatus", "label": ".toggleStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleStatus()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_api_keys_controller_apikeyscontroller_delete", "label": ".delete()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_api_keys_service", "label": "api-keys.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "api-keys.service.ts", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_api_keys_service_apikeysservice", "label": "ApiKeysService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeysService", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_admin_api_keys_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 67, "community_name": "ApiKeysService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_api_keys_service_apikeysservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_api_keys_service_apikeysservice_hashkey", "label": ".hashKey()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".hashKey()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_api_keys_service_apikeysservice_findall", "label": ".findAll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_api_keys_service_apikeysservice_create", "label": ".create()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_api_keys_service_apikeysservice_togglestatus", "label": ".toggleStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleStatus()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_api_keys_service_apikeysservice_delete", "label": ".delete()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".delete()", "community": 2, "community_name": "ApiResponse", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_api_keys_service_apikeysservice_validatekey", "label": ".validateKey()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".validateKey()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/admin/api-keys.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_controller", "label": "admin/blogs.controller.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/blogs.controller.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_blogs_controller_blogscontroller", "label": "BlogsController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "BlogsController", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 23}, {"id": "backend_src_admin_blogs_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_controller", "label": "Controller", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_get", "label": "Get", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_blogs_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 16}, {"id": "backend_src_admin_blogs_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_controller_ts_query", "label": "Query", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_controller_ts_post", "label": "Post", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_controller_ts_body", "label": "Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_blogs_controller_ts_put", "label": "Put", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_controller_ts_param", "label": "Param", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_blogs_controller_ts_delete", "label": "Delete", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_ts_request", "label": "Request", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_patch", "label": "Patch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_blogscontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "label": ".getBlogs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogs()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getauthors", "label": ".getAuthors()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAuthors()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", "label": ".getBlogCategories()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogCategories()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", "label": ".createBlogCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlogCategory()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", "label": ".updateBlogCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBlogCategory()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", "label": ".deleteBlogCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlogCategory()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", "label": ".getBlogTags()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogTags()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", "label": ".createBlogTag()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlogTag()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", "label": ".deleteBlogTag()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlogTag()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", "label": ".getBlogById()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogById()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_createblog", "label": ".createBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "label": ".updateBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", "label": ".deleteBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getcomments", "label": ".getComments()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getComments()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", "label": ".updateCommentStatus()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCommentStatus()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", "label": ".deleteComment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteComment()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_service", "label": "admin/blogs.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/blogs.service.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_admin_blogs_service_blogsservice", "label": "BlogsService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "BlogsService", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 22}, {"id": "backend_src_admin_blogs_service_ts_injectable", "label": "Injectable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 51, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_service_blogsservice_getblogs", "label": ".getBlogs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogs()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_service_blogsservice_getblogbyid", "label": ".getBlogById()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogById()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_createblog", "label": ".createBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_service_blogsservice_updateblog", "label": ".updateBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_service_blogsservice_deleteblog", "label": ".deleteBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_service_blogsservice_getauthors", "label": ".getAuthors()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAuthors()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_getblogcategories", "label": ".getBlogCategories()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogCategories()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_createblogcategory", "label": ".createBlogCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlogCategory()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_updateblogcategory", "label": ".updateBlogCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBlogCategory()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_deleteblogcategory", "label": ".deleteBlogCategory()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlogCategory()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_getblogtags", "label": ".getBlogTags()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogTags()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_createblogtag", "label": ".createBlogTag()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlogTag()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_deleteblogtag", "label": ".deleteBlogTag()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlogTag()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_getcomments", "label": ".getComments()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getComments()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", "label": ".updateCommentStatus()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCommentStatus()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_service_blogsservice_deletecomment", "label": ".deleteComment()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteComment()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller", "label": "categories.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "categories.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_categories_controller_categoriescontroller", "label": "CategoriesController", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoriesController", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_admin_categories_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_controller", "label": "Controller", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_get", "label": "Get", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_categories_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_query", "label": "Query", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_post", "label": "Post", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_body", "label": "Body", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_ts_put", "label": "Put", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_param", "label": "Param", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_ts_delete", "label": "Delete", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_categoriescontroller_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "label": ".getCategories()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategories()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", "label": ".getAllCategoriesRaw()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllCategoriesRaw()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "label": ".createCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCategory()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "label": ".updateCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCategory()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "label": ".deleteCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCategory()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_categories_service", "label": "categories.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "categories.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_categories_service_categoryquery", "label": "CategoryQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryQuery", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_service_categoriesservice", "label": "CategoriesService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoriesService", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_categories_service_ts_injectable", "label": "Injectable", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 39, "community_name": "CategoriesController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_service_categoriesservice_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_service_categoriesservice_getcategories", "label": ".getCategories()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategories()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", "label": ".getAllCategoriesRaw()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllCategoriesRaw()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_service_categoriesservice_createcategory", "label": ".createCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCategory()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_service_categoriesservice_updatecategory", "label": ".updateCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCategory()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_service_categoriesservice_deletecategory", "label": ".deleteCategory()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCategory()", "community": 39, "community_name": "CategoriesController", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_admin_query_dto", "label": "admin-query.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-query.dto.ts", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/dto/admin-query.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "AdminQueryDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminQueryDto", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/dto/admin-query.dto.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_admin_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_admin_query_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 66, "community_name": "AdminController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_admin_query_dto_adminproductquerydto", "label": "AdminProductQueryDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminProductQueryDto", "community": 66, "community_name": "AdminController", "source_file": "backend/src/admin/dto/admin-query.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_api_key_dto", "label": "api-key.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "api-key.dto.ts", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "backend/src/admin/dto/api-key.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_api_key_dto_createapikeydto", "label": "CreateApiKeyDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateApiKeyDto", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "backend/src/admin/dto/api-key.dto.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_dto_api_key_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_api_key_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_api_key_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_api_key_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_api_key_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_api_key_dto_ts_isarray", "label": "IsArray", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 65, "community_name": "CreateApiKeyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_pricing_dto", "label": "pricing.dto.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "pricing.dto.ts", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/dto/pricing.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "label": "UpdatePricingSettingsDto", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdatePricingSettingsDto", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/dto/pricing.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_admin_dto_pricing_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_min", "label": "Min", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Min", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_isstring", "label": "IsString", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_isin", "label": "IsIn", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsIn", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_pricing_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "label": "ApplyGlobalMarginsDto", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApplyGlobalMarginsDto", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/dto/pricing.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_admin_dto_pricing_dto_ts_isarray", "label": "IsArray", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 19, "community_name": "admin.service.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "label": "BulkPriceAdjustmentDto", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BulkPriceAdjustmentDto", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/admin/dto/pricing.dto.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_admin_dto_product_dto", "label": "product.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "product.dto.ts", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/admin/dto/product.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_dto_product_dto_productdto", "label": "ProductDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductDto", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/admin/dto/product.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 148, "community_name": "ProductDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_product_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 148, "community_name": "ProductDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_product_dto_ts_isstring", "label": "IsString", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 148, "community_name": "ProductDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_product_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 148, "community_name": "ProductDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_product_dto_ts_isarray", "label": "IsArray", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 148, "community_name": "ProductDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_product_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 148, "community_name": "ProductDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_user_dto", "label": "user.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "user.dto.ts", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/dto/user.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_dto_user_dto_createuserdto", "label": "CreateUserDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateUserDto", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/dto/user.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_admin_dto_user_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_user_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_user_dto_ts_isstring", "label": "IsString", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_user_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_user_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_user_dto_ts_minlength", "label": "MinLength", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_user_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 60, "community_name": "admin.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_dto_user_dto_updateuserdto", "label": "UpdateUserDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateUserDto", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/admin/dto/user.dto.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_media_controller", "label": "media.controller.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "media.controller.ts", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_media_controller_mediacontroller", "label": "MediaController", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaController", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_media_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_media_controller_ts_get", "label": "Get", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_media_controller_ts_post", "label": "Post", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_useinterceptors", "label": "UseInterceptors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseInterceptors", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_uploadedfile", "label": "UploadedFile", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadedFile", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_delete", "label": "Delete", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_controller_ts_body", "label": "Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_controller_ts_param", "label": "Param", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_controller_ts_put", "label": "Put", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_mediacontroller_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_controller_mediacontroller_getallmedia", "label": ".getAllMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_media_controller_mediacontroller_uploadfile", "label": ".uploadFile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".uploadFile()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "label": ".deleteManyMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteManyMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_media_controller_mediacontroller_deletemedia", "label": ".deleteMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_media_controller_mediacontroller_updatemedia", "label": ".updateMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_media_service", "label": "media.service.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "media.service.ts", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_media_service_mediaservice", "label": "MediaService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaService", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_media_service_ts_injectable", "label": "Injectable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 40, "community_name": "MediaController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_service_mediaservice_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_service_mediaservice_getallmedia", "label": ".getAllMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_service_mediaservice_uploadfile", "label": ".uploadFile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".uploadFile()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_service_mediaservice_deletemedia", "label": ".deleteMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_service_mediaservice_deletemanymedia", "label": ".deleteManyMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteManyMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_service_mediaservice_updatemedia", "label": ".updateMedia()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateMedia()", "community": 40, "community_name": "MediaController", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_controller", "label": "admin/pets.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/pets.controller.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_pets_controller_petscontroller", "label": "PetsController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PetsController", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_admin_pets_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_query", "label": "Query", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_delete", "label": "Delete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_petscontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_controller_petscontroller_getpets", "label": ".getPets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPets()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_pets_controller_petscontroller_deletepet", "label": ".deletePet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".deletePet()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_pets_service", "label": "admin/pets.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/pets.service.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_pets_service_petquery", "label": "PetQuery", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PetQuery", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_service_petsservice", "label": "PetsService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PetsService", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_pets_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_service_petsservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_service_petsservice_getpets", "label": ".getPets()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPets()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_service_petsservice_deletepet", "label": ".deletePet()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".deletePet()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller", "label": "reports.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "reports.controller.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_reports_controller_reportscontroller", "label": "ReportsController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ReportsController", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_reports_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_query", "label": "Query", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_reportscontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_reports_controller_reportscontroller_getreports", "label": ".getReports()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getReports()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_reports_service", "label": "reports.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "reports.service.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_reports_service_reportsservice", "label": "ReportsService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ReportsService", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_reports_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_service_reportsservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_reports_service_reportsservice_getdashboardreports", "label": ".getDashboardReports()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDashboardReports()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_ssl_controller", "label": "ssl.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ssl.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_admin_ssl_controller_sslcontroller", "label": "SslController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SslController", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_admin_ssl_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_ssl_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_ssl_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_ssl_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_ssl_controller_ts_useinterceptors", "label": "UseInterceptors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseInterceptors", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "uploadedfiles", "label": "UploadedFiles", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadedFiles", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_controller_ts_query", "label": "Query", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_controller_sslcontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_ssl_controller_sslcontroller_getstatus", "label": ".getStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getStatus()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", "label": ".updateByText()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateByText()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "label": ".uploadFiles()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".uploadFiles()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_ssl_controller_sslcontroller_testdomain", "label": ".testDomain()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".testDomain()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_ssl_service", "label": "ssl.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ssl.service.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_ssl_service_sslcertinfo", "label": "SslCertInfo", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SslCertInfo", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_service_sslservice", "label": "SslService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SslService", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_admin_ssl_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 42, "community_name": "SslController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_service_sslservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_ssl_service_sslservice_getcertpath", "label": ".getCertPath()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCertPath()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_ssl_service_sslservice_getkeypath", "label": ".getKeyPath()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getKeyPath()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_ssl_service_sslservice_toshamsi", "label": ".toShamsi()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".toShamsi()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_ssl_service_sslservice_getstatus", "label": ".getStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getStatus()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_ssl_service_sslservice_updatecertificates", "label": ".updateCertificates()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCertificates()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", "label": ".testOnlineDomainSsl()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".testOnlineDomainSsl()", "community": 42, "community_name": "SslController", "source_file": "backend/src/admin/ssl.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_wiki_controller", "label": "admin/wiki.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/wiki.controller.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_wiki_controller_wikicontroller", "label": "WikiController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiController", "community": 74, "community_name": "WikiController", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_wiki_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_get", "label": "Get", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_wiki_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_query", "label": "Query", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_post", "label": "Post", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_body", "label": "Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_ts_put", "label": "Put", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_param", "label": "Param", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_ts_delete", "label": "Delete", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 74, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_wikicontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 74, "community_name": "WikiController", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_wikicontroller_getterms", "label": ".getTerms()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTerms()", "community": 74, "community_name": "WikiController", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_wiki_controller_wikicontroller_createterm", "label": ".createTerm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createTerm()", "community": 74, "community_name": "WikiController", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "label": ".updateTerm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateTerm()", "community": 74, "community_name": "WikiController", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", "label": ".deleteTerm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteTerm()", "community": 74, "community_name": "WikiController", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_wiki_service", "label": "admin/wiki.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/wiki.service.ts", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_wiki_service_wikiquery", "label": "WikiQuery", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiQuery", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice", "label": "WikiService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiService", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_admin_wiki_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_service_wikiservice_getterms", "label": ".getTerms()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTerms()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice_createterm", "label": ".createTerm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createTerm()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice_updateterm", "label": ".updateTerm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateTerm()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice_deleteterm", "label": ".deleteTerm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteTerm()", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_app_controller_spec", "label": "app.controller.spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "app.controller.spec.ts", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_app_controller", "label": "app.controller.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "app.controller.ts", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_app_controller_appcontroller", "label": "AppController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AppController", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_app_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 114, "community_name": "AppService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_controller_ts_get", "label": "Get", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 114, "community_name": "AppService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_controller_appcontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_app_controller_appcontroller_gethello", "label": ".getHello()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHello()", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_module", "label": "app.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 30.6, "font": {"size": 12, "color": "#ffffff"}, "title": "app.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 74}, {"id": "backend_src_app_module_appmodule", "label": "AppModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AppModule", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_app_module_ts_module", "label": "Module", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 123, "community_name": "auth.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_module_appmodule_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_app_module_appmodule_configure", "label": ".configure()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".configure()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_service", "label": "app.service.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "app.service.ts", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_service_appservice", "label": "AppService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AppService", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_app_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 114, "community_name": "AppService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_service_appservice_gethello", "label": ".getHello()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHello()", "community": 114, "community_name": "AppService", "source_file": "backend/src/app.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_constants", "label": "auth.constants.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.constants.ts", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/auth.constants.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_auth_auth_constants_default_jwt_secret", "label": "DEFAULT_JWT_SECRET", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_JWT_SECRET", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/auth.constants.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_constants_default_jwt_refresh_secret", "label": "DEFAULT_JWT_REFRESH_SECRET", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_JWT_REFRESH_SECRET", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/auth.constants.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_constants_getjwtsecret", "label": "getJwtSecret()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "getJwtSecret()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/auth.constants.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_auth_auth_constants_getjwtrefreshsecret", "label": "getJwtRefreshSecret()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getJwtRefreshSecret()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/auth.constants.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_spec", "label": "auth.controller.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.controller.spec.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_auth_auth_controller", "label": "auth.controller.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.controller.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_auth_auth_controller_authcontroller", "label": "AuthController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthController", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_auth_auth_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_ts_throttle", "label": "Throttle", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Throttle", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 7}, {"id": "httpcode", "label": "HttpCode", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HttpCode", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_auth_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_ts_req", "label": "Req", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_authcontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_controller_authcontroller_sendotp", "label": ".sendOtp()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_auth_auth_controller_authcontroller_verifyotp", "label": ".verifyOtp()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyOtp()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_auth_auth_controller_authcontroller_register", "label": ".register()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_login", "label": ".login()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_adminlogin", "label": ".adminLogin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminLogin()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_refresh", "label": ".refresh()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".refresh()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_logout", "label": ".logout()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".logout()", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_module", "label": "auth.module.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.module.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.module.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_auth_auth_module_authmodule", "label": "AuthModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModule", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_auth_module_ts_module", "label": "Module", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 123, "community_name": "auth.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_spec", "label": "auth.service.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.service.spec.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_service", "label": "auth.service.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.service.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_auth_auth_service_registerinput", "label": "RegisterInput", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterInput", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_logininput", "label": "LoginInput", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginInput", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_adminlogininput", "label": "AdminLoginInput", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLoginInput", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_authservice", "label": "AuthService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthService", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_auth_auth_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 123, "community_name": "auth.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_authservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_auth_auth_service_authservice_sendotp", "label": ".sendOtp()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_service_authservice_verifyotp", "label": ".verifyOtp()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyOtp()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_service_authservice_register", "label": ".register()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_service_authservice_login", "label": ".login()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_service_authservice_adminlogin", "label": ".adminLogin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminLogin()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_authservice_refresh", "label": ".refresh()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".refresh()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto", "label": "admin-login.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-login.dto.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/admin-login.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_dto_admin_login_dto_adminlogindto", "label": "AdminLoginDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLoginDto", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/admin-login.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_minlength", "label": "MinLength", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto", "label": "login.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "login.dto.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/login.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_dto_login_dto_logindto", "label": "LoginDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginDto", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/login.dto.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_dto_login_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto_ts_minlength", "label": "MinLength", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto", "label": "register.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "register.dto.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/register.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_dto_register_dto_registerdto", "label": "RegisterDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterDto", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/register.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_auth_dto_register_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_minlength", "label": "MinLength", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto", "label": "send-otp.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "send-otp.dto.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/send-otp.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "SendOtpDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SendOtpDto", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/send-otp.dto.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto_ts_matches", "label": "Matches", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Matches", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto", "label": "verify-otp.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "verify-otp.dto.ts", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "VerifyOtpDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyOtpDto", "community": 93, "community_name": "auth.controller.ts", "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_matches", "label": "Matches", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Matches", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "length", "label": "Length", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Length", "community": 93, "community_name": "auth.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_auth_guard", "label": "jwt-auth.guard.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "jwt-auth.guard.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 36}, {"id": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "JwtAuthGuard", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "JwtAuthGuard", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 38}, {"id": "backend_src_auth_jwt_auth_guard_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 18, "community_name": "JwtAuthGuard", "source_file": "", "file_type": "code", "degree": 1}, {"id": "inject", "label": "Inject", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Inject", "community": 67, "community_name": "ApiKeysService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_auth_guard_jwtauthguard_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_jwt_auth_guard_jwtauthguard_canactivate", "label": ".canActivate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".canActivate()", "community": 67, "community_name": "ApiKeysService", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", "label": ".handleRequest()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleRequest()", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_strategy", "label": "jwt.strategy.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "jwt.strategy.ts", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_jwt_strategy_jwtpayload", "label": "JwtPayload", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "JwtPayload", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_strategy_jwtstrategy", "label": "JwtStrategy", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "JwtStrategy", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_jwt_strategy_ts_injectable", "label": "Injectable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_jwt_strategy_jwtstrategy_validate", "label": ".validate()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_roles_decorator", "label": "auth/roles.decorator.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "auth/roles.decorator.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/auth/roles.decorator.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_roles_guard", "label": "auth/roles.guard.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "auth/roles.guard.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/auth/roles.guard.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_b2b_b2b_controller", "label": "b2b.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller", "label": "B2BController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BController", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_b2b_b2b_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_throttle", "label": "Throttle", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Throttle", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_post", "label": "Post", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_b2b_b2b_controller_ts_body", "label": "Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_b2b_b2b_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_b2b_b2b_controller_ts_get", "label": "Get", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_b2b_b2b_controller_ts_put", "label": "Put", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_param", "label": "Param", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_req", "label": "Req", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "label": ".createInquiry()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInquiry()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "label": ".findAllInquiries()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllInquiries()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "label": ".updateInquiryStatus()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateInquiryStatus()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "label": ".getPartnerProfile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPartnerProfile()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "label": ".createWholesaleOrder()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".createWholesaleOrder()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "label": ".getAllPartnerAccounts()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllPartnerAccounts()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_b2b_b2b_module", "label": "b2b.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/b2b/b2b.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_b2b_b2b_module_b2bmodule", "label": "B2BModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/b2b/b2b.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_b2b_b2b_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_service", "label": "b2b.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", "label": "B2BWholesaleOrderItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BWholesaleOrderItem", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_b2b_b2b_service_b2bservice", "label": "B2BService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BService", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_b2b_b2b_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 34, "community_name": "B2BService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_service_b2bservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_service_b2bservice_createinquiry", "label": ".createInquiry()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInquiry()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", "label": ".findAllInquiries()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllInquiries()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", "label": ".updateInquiryStatus()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateInquiryStatus()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", "label": ".getPartnerProfile()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPartnerProfile()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", "label": ".createWholesaleOrder()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createWholesaleOrder()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", "label": ".getAllPartnerAccounts()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllPartnerAccounts()", "community": 34, "community_name": "B2BService", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_controller", "label": "banners.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "banners.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_banners_banners_controller_bannerscontroller", "label": "BannersController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersController", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_banners_banners_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_banners_banners_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_banners_banners_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_banners_banners_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_banners_banners_controller_ts_put", "label": "Put", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_patch", "label": "Patch", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_controller_ts_delete", "label": "Delete", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_bannerscontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_controller_bannerscontroller_findall", "label": ".findAll()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_banners_banners_controller_bannerscontroller_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_banners_banners_controller_bannerscontroller_reorder", "label": ".reorder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_banners_banners_controller_bannerscontroller_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_banners_banners_controller_bannerscontroller_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_banners_banners_module", "label": "banners.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "banners.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/banners/banners.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_banners_banners_module_bannersmodule", "label": "BannersModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/banners/banners.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_banners_banners_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_service", "label": "banners.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "banners.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_banners_banners_service_bannersservice", "label": "BannersService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersService", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_banners_banners_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 43, "community_name": "BannersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_service_bannersservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_service_bannersservice_findall", "label": ".findAll()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_service_bannersservice_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_service_bannersservice_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_banners_banners_service_bannersservice_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_service_bannersservice_reorder", "label": ".reorder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 43, "community_name": "BannersService", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_blogs_controller", "label": "blogs/blogs.controller.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "blogs/blogs.controller.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_blogs_blogs_controller_blogscontroller", "label": "BlogsController", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsController", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_blogs_blogs_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_controller", "label": "Controller", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_get", "label": "Get", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_blogs_blogs_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_blogs_controller_ts_query", "label": "Query", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_param", "label": "Param", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_blogs_blogs_controller_ts_post", "label": "Post", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_controller_ts_throttle", "label": "Throttle", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Throttle", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_body", "label": "Body", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 99, "community_name": "BlogsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findall", "label": ".findAll()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", "label": ".findCategories()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findCategories()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findtags", "label": ".findTags()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findTags()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "label": ".findHomepage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findHomepage()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findone", "label": ".findOne()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_incrementview", "label": ".incrementView()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".incrementView()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "label": ".findComments()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findComments()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "label": ".addComment()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".addComment()", "community": 99, "community_name": "BlogsController", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_module", "label": "blogs.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "blogs.module.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_module_blogsmodule", "label": "BlogsModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsModule", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_blogs_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service", "label": "blogs/blogs.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "blogs/blogs.service.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_blogs_blogs_service_blogfilterdto", "label": "BlogFilterDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogFilterDto", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_service_blogsservice", "label": "BlogsService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsService", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_blogs_blogs_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_service_blogsservice_findall", "label": ".findAll()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_findhomepage", "label": ".findHomepage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findHomepage()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", "label": ".findOneBySlug()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOneBySlug()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_getcategories", "label": ".getCategories()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategories()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_gettags", "label": ".getTags()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTags()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_incrementview", "label": ".incrementView()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".incrementView()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug", "label": ".findCommentsBySlug()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findCommentsBySlug()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_addcomment", "label": ".addComment()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".addComment()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_dto_create_blog_dto", "label": "create-blog.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "create-blog.dto.ts", "community": 188, "community_name": "update-blog.dto.ts", "source_file": "backend/src/blogs/dto/create-blog.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_dto_create_blog_dto_createblogdto", "label": "CreateBlogDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateBlogDto", "community": 188, "community_name": "update-blog.dto.ts", "source_file": "backend/src/blogs/dto/create-blog.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_dto_update_blog_dto", "label": "update-blog.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "update-blog.dto.ts", "community": 188, "community_name": "update-blog.dto.ts", "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_dto_update_blog_dto_updateblogdto", "label": "UpdateBlogDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateBlogDto", "community": 188, "community_name": "update-blog.dto.ts", "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_entities_blog_entity", "label": "blog.entity.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "blog.entity.ts", "community": 241, "community_name": "blog.entity.ts", "source_file": "backend/src/blogs/entities/blog.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_entities_blog_entity_blog", "label": "Blog", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Blog", "community": 241, "community_name": "blog.entity.ts", "source_file": "backend/src/blogs/entities/blog.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller", "label": "cms.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.controller.ts", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_cms_cms_controller_cmscontroller", "label": "CmsController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "CmsController", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_cms_cms_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 12}, {"id": "backend_src_cms_cms_controller_ts_post", "label": "Post", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_body", "label": "Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_ts_put", "label": "Put", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_param", "label": "Param", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_ts_delete", "label": "Delete", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_cmscontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_controller_cmscontroller_getherobanners", "label": ".getHeroBanners()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHeroBanners()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "label": ".createHeroBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createHeroBanner()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "label": ".updateHeroBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateHeroBanner()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "label": ".deleteHeroBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteHeroBanner()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", "label": ".getVetTestimonials()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getVetTestimonials()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "label": ".createVetTestimonial()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createVetTestimonial()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "label": ".updateVetTestimonial()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateVetTestimonial()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "label": ".deleteVetTestimonial()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteVetTestimonial()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", "label": ".getSmartAdvisorRules()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmartAdvisorRules()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "label": ".createSmartAdvisorRule()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".createSmartAdvisorRule()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "label": ".updateSmartAdvisorRule()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSmartAdvisorRule()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "label": ".deleteSmartAdvisorRule()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmartAdvisorRule()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_module", "label": "cms.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/cms/cms.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_cms_cms_module_cmsmodule", "label": "CmsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "CmsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/cms/cms.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_service", "label": "cms.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.service.ts", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_cms_cms_service_cmsservice", "label": "CmsService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "CmsService", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_cms_cms_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_service_cmsservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_getherobanners", "label": ".getHeroBanners()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHeroBanners()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_createherobanner", "label": ".createHeroBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".createHeroBanner()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_updateherobanner", "label": ".updateHeroBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateHeroBanner()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_deleteherobanner", "label": ".deleteHeroBanner()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteHeroBanner()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_getvettestimonials", "label": ".getVetTestimonials()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getVetTestimonials()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_createvettestimonial", "label": ".createVetTestimonial()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".createVetTestimonial()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", "label": ".updateVetTestimonial()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateVetTestimonial()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", "label": ".deleteVetTestimonial()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteVetTestimonial()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", "label": ".getSmartAdvisorRules()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmartAdvisorRules()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", "label": ".createSmartAdvisorRule()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".createSmartAdvisorRule()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", "label": ".updateSmartAdvisorRule()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSmartAdvisorRule()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", "label": ".deleteSmartAdvisorRule()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmartAdvisorRule()", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_dto_cms_dto", "label": "cms.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.dto.ts", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "CreateHeroBannerDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateHeroBannerDto", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_cms_dto_cms_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_dto_cms_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "CreateVetTestimonialDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateVetTestimonialDto", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "CreateSmartAdvisorRuleDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateSmartAdvisorRuleDto", "community": 5, "community_name": "CmsController", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 12}, {"id": "isuuid", "label": "IsUUID", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsUUID", "community": 5, "community_name": "CmsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_decorators_roles_decorator", "label": "decorators/roles.decorator.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "decorators/roles.decorator.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/decorators/roles.decorator.ts", "file_type": "code", "degree": 19}, {"id": "backend_src_common_decorators_roles_decorator_roles_key", "label": "ROLES_KEY", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ROLES_KEY", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/decorators/roles.decorator.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_decorators_roles_decorator_roles", "label": "Roles()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Roles()", "community": 0, "community_name": "Roles", "source_file": "backend/src/common/decorators/roles.decorator.ts", "file_type": "code", "degree": 108}, {"id": "backend_src_common_dto_pagination_dto", "label": "pagination.dto.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "pagination.dto.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_common_dto_pagination_dto_sortorder", "label": "SortOrder", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SortOrder", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_paginationdto", "label": "PaginationDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 21.4, "font": {"size": 12, "color": "#ffffff"}, "title": "PaginationDto", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 41}, {"id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_type", "label": "Type", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isint", "label": "IsInt", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsInt", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_min", "label": "Min", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Min", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isstring", "label": "IsString", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isenum", "label": "IsEnum", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEnum", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_env_validation", "label": "env.validation.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "env.validation.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/env.validation.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_env_validation_environmentvariables", "label": "EnvironmentVariables", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "EnvironmentVariables", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/env.validation.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_env_validation_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_env_validation_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_env_validation_ts_isoptional", "label": "IsOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_env_validation_validateenv", "label": "validateEnv()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "validateEnv()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/env.validation.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_filters_http_exception_filter", "label": "http-exception.filter.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "http-exception.filter.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "label": "CustomHttpExceptionFilter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomHttpExceptionFilter", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_common_filters_http_exception_filter_ts_catch", "label": "Catch", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Catch", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", "label": ".catch()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".catch()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", "label": ".translateGenericMessage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".translateGenericMessage()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", "label": ".deriveErrorCode()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deriveErrorCode()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_filters_prisma_exception_filter", "label": "prisma-exception.filter.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma-exception.filter.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "label": "PrismaExceptionFilter", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrismaExceptionFilter", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_filters_prisma_exception_filter_ts_catch", "label": "Catch", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Catch", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", "label": ".catch()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".catch()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_guards_roles_guard_spec", "label": "roles.guard.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "roles.guard.spec.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/guards/roles.guard.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_guards_roles_guard", "label": "guards/roles.guard.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "guards/roles.guard.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_common_guards_roles_guard_requestwithuser", "label": "RequestWithUser", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestWithUser", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_guards_roles_guard_rolesguard", "label": "RolesGuard", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "RolesGuard", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 23}, {"id": "backend_src_common_guards_roles_guard_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 18, "community_name": "JwtAuthGuard", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_guards_roles_guard_rolesguard_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_guards_roles_guard_rolesguard_canactivate", "label": ".canActivate()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".canActivate()", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_interceptors_decimal_interceptor_spec", "label": "decimal.interceptor.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "decimal.interceptor.spec.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_interceptors_decimal_interceptor", "label": "decimal.interceptor.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "decimal.interceptor.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "label": "DecimalInterceptor", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DecimalInterceptor", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", "label": ".intercept()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".intercept()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", "label": ".transform()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".transform()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_metrics_controller", "label": "metrics.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "metrics.controller.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_metrics_controller_metricscontroller", "label": "MetricsController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricsController", "community": 128, "community_name": "MetricsController", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 7}, {"id": "apiexcludecontroller", "label": "ApiExcludeController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiExcludeController", "community": 128, "community_name": "MetricsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_metrics_controller_ts_controller", "label": "Controller", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 128, "community_name": "MetricsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_metrics_controller_ts_get", "label": "Get", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 128, "community_name": "MetricsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_metrics_controller_ts_res", "label": "Res", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Res", "community": 128, "community_name": "MetricsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_metrics_controller_metricscontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 128, "community_name": "MetricsController", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", "label": ".incrementRequestCount()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".incrementRequestCount()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_metrics_controller_metricscontroller_getmetrics", "label": ".getMetrics()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMetrics()", "community": 128, "community_name": "MetricsController", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_revalidation_revalidation_module", "label": "revalidation.module.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidation.module.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/common/revalidation/revalidation.module.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_revalidation_revalidation_module_revalidationmodule", "label": "RevalidationModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RevalidationModule", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/common/revalidation/revalidation.module.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_revalidation_revalidation_module_ts_global", "label": "Global", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_revalidation_revalidation_module_ts_module", "label": "Module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_revalidation_revalidation_service", "label": "revalidation.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidation.service.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "RevalidationService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "RevalidationService", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_common_revalidation_revalidation_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl", "label": ".frontendUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".frontendUrl()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret", "label": ".secret()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".secret()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", "label": ".revalidateTag()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".revalidateTag()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", "label": ".revalidatePath()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".revalidatePath()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": ".revalidateProduct()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".revalidateProduct()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": ".revalidateBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".revalidateBlog()", "community": 51, "community_name": "BlogsController", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", "label": ".revalidateSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".revalidateSettings()", "community": 148, "community_name": "ProductDto", "source_file": "backend/src/common/revalidation/revalidation.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_schemas_error_response_schema", "label": "error-response.schema.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "error-response.schema.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/schemas/error-response.schema.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_schemas_error_response_schema_errordetailfield", "label": "ErrorDetailField", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorDetailField", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/schemas/error-response.schema.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_schemas_error_response_schema_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_error_response_schema_apierrorresponse", "label": "ApiErrorResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErrorResponse", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/common/schemas/error-response.schema.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_paginated_response_schema", "label": "paginated-response.schema.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "paginated-response.schema.ts", "community": 169, "community_name": "paginated-response.schema.ts", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_schemas_paginated_response_schema_paginationmeta", "label": "PaginationMeta", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationMeta", "community": 169, "community_name": "paginated-response.schema.ts", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 169, "community_name": "paginated-response.schema.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", "label": "PaginatedResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginatedResponse", "community": 169, "community_name": "paginated-response.schema.ts", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", "label": "createPaginatedSchema()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createPaginatedSchema()", "community": 169, "community_name": "paginated-response.schema.ts", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_events_constants", "label": "sms-events.constants.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sms-events.constants.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms-events.constants.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_services_sms_events_constants_smsrule", "label": "SmsRule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsRule", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms-events.constants.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_events_constants_smseventvariable", "label": "SmsEventVariable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsEventVariable", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms-events.constants.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_events_constants_smseventdefinition", "label": "SmsEventDefinition", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsEventDefinition", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms-events.constants.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_events_constants_sms_event_definitions", "label": "SMS_EVENT_DEFINITIONS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SMS_EVENT_DEFINITIONS", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms-events.constants.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_events_constants_default_sms_rules", "label": "DEFAULT_SMS_RULES", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_SMS_RULES", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms-events.constants.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service", "label": "sms.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "sms.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 27}, {"id": "backend_src_common_services_sms_service_sendpatternsmsoptions", "label": "SendPatternSmsOptions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SendPatternSmsOptions", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_smsrule", "label": "SmsRule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsRule", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_smsconfig", "label": "SmsConfig", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsConfig", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_melipayamakpattern", "label": "MeliPayamakPattern", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MeliPayamakPattern", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_smslogquery", "label": "SmsLogQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsLogQuery", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_service_melipayamakresponse", "label": "MeliPayamakResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MeliPayamakResponse", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_smsservice", "label": "SmsService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 24.2, "font": {"size": 12, "color": "#ffffff"}, "title": "SmsService", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 51}, {"id": "backend_src_common_services_sms_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_smsservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": ".getSmsConfig()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsConfig()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 16}, {"id": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": ".triggerEvent()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": ".triggerEvent()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", "label": ".getEventDefinitions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEventDefinitions()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_service_smsservice_testrule", "label": ".testRule()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".testRule()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_postasmx", "label": ".postAsmx()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".postAsmx()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_recordlog", "label": ".recordLog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".recordLog()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_getsmslogs", "label": ".getSmsLogs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsLogs()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_deletesmslog", "label": ".deleteSmsLog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmsLog()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", "label": ".clearAllSmsLogs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".clearAllSmsLogs()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", "label": ".parsePatternsXml()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".parsePatternsXml()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_getcredit", "label": ".getCredit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCredit()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", "label": ".renderPatternMessage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".renderPatternMessage()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_getpatterns", "label": ".getPatterns()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPatterns()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_services_sms_service_smsservice_addpattern", "label": ".addPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".addPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_services_sms_service_smsservice_editpattern", "label": ".editPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".editPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", "label": ".saveLocalPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".saveLocalPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", "label": ".updateLocalPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateLocalPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": ".sendPatternSms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendPatternSms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_common_services_sms_service_smsservice_testsms", "label": ".testSms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".testSms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_services_sms_service_smsservice_sendotp", "label": ".sendOtp()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "label": ".sendOrderConfirmation()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOrderConfirmation()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", "label": ".sendShippingNotification()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendShippingNotification()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", "label": ".sendB2bNotification()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendB2bNotification()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", "label": ".sendPetCareReminder()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendPetCareReminder()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_service_smsservice_sendsms", "label": ".sendSms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendSms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_sms_module", "label": "sms.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sms.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/common/sms.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_sms_module_smsmodule", "label": "SmsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/common/sms.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_sms_module_ts_global", "label": "Global", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_sms_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_utils_phone_utils", "label": "phone.utils.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "phone.utils.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/common/utils/phone.utils.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_utils_phone_utils_normalizemobile", "label": "normalizeMobile()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeMobile()", "community": 60, "community_name": "admin.controller.ts", "source_file": "backend/src/common/utils/phone.utils.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_common_utils_pricing_utils", "label": "pricing.utils.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pricing.utils.ts", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/common/utils/pricing.utils.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_utils_pricing_utils_roundingmode", "label": "RoundingMode", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "RoundingMode", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/common/utils/pricing.utils.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_utils_pricing_utils_pricingsettings", "label": "PricingSettings", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PricingSettings", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/common/utils/pricing.utils.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_utils_pricing_utils_default_pricing_settings", "label": "DEFAULT_PRICING_SETTINGS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_PRICING_SETTINGS", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/common/utils/pricing.utils.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_utils_pricing_utils_applyrounding", "label": "applyRounding()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "applyRounding()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/common/utils/pricing.utils.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_utils_pricing_utils_calculatesellingprice", "label": "calculateSellingPrice()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateSellingPrice()", "community": 19, "community_name": "admin.service.ts", "source_file": "backend/src/common/utils/pricing.utils.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_contact_contact_controller", "label": "contact.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_contact_contact_controller_contactcontroller", "label": "ContactController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactController", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_contact_contact_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_ts_throttle", "label": "Throttle", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Throttle", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_ts_post", "label": "Post", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_ts_body", "label": "Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_controller_ts_query", "label": "Query", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_ts_put", "label": "Put", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_controller_ts_param", "label": "Param", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_contactcontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "label": ".submitContact()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".submitContact()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", "label": ".getContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getContactInfo()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "label": ".getAllSubmissions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllSubmissions()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "label": ".updateSubmissionStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSubmissionStatus()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "label": ".updateContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateContactInfo()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_contact_contact_module", "label": "contact.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/contact/contact.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_contact_contact_module_contactmodule", "label": "ContactModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/contact/contact.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_service", "label": "contact.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_contact_contact_service_createcontactsubmissiondto", "label": "CreateContactSubmissionDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateContactSubmissionDto", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_service_updatecontactinfoitemdto", "label": "UpdateContactInfoItemDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateContactInfoItemDto", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_service_contactservice", "label": "ContactService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactService", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_contact_contact_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 35, "community_name": "ContactService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_service_contactservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_contactservice_submitcontactform", "label": ".submitContactForm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".submitContactForm()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_contactservice_getcontactinfo", "label": ".getContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getContactInfo()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_contactservice_getallsubmissions", "label": ".getAllSubmissions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllSubmissions()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", "label": ".updateSubmissionStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSubmissionStatus()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", "label": ".updateContactInfoItems()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateContactInfoItems()", "community": 35, "community_name": "ContactService", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_controller", "label": "doctors.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "doctors.controller.ts", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller", "label": "DoctorsController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorsController", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_doctors_doctors_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_doctors_doctors_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_doctors_doctors_controller_ts_query", "label": "Query", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_controller_ts_param", "label": "Param", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_controller_ts_post", "label": "Post", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_controller_ts_body", "label": "Body", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_doctors_doctors_controller_ts_put", "label": "Put", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_controller_ts_delete", "label": "Delete", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "label": ".findAll()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "label": ".findOne()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller_create", "label": ".create()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller_update", "label": ".update()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "label": ".remove()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_doctors_doctors_module", "label": "doctors.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "doctors.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/doctors/doctors.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_doctors_doctors_module_doctorsmodule", "label": "DoctorsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/doctors/doctors.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_service", "label": "doctors.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "doctors.service.ts", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_doctors_doctors_service_doctorsservice", "label": "DoctorsService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorsService", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_doctors_doctors_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_doctors_service_doctorsservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_doctors_doctors_service_doctorsservice_findall", "label": ".findAll()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_service_doctorsservice_findone", "label": ".findOne()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_doctors_doctors_service_doctorsservice_create", "label": ".create()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_doctors_doctors_service_doctorsservice_update", "label": ".update()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_doctors_service_doctorsservice_remove", "label": ".remove()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/doctors.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_dto_doctor_query_dto", "label": "doctor-query.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "doctor-query.dto.ts", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "label": "DoctorQueryDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorQueryDto", "community": 16, "community_name": "DoctorQueryDto", "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_type", "label": "Type", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_isint", "label": "IsInt", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsInt", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_min", "label": "Min", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Min", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_transform", "label": "Transform", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Transform", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_doctors_dto_doctor_query_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 16, "community_name": "DoctorQueryDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_controller", "label": "faq.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "faq.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_faq_faq_controller_faqcontroller", "label": "FaqController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FaqController", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_faq_faq_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_faq_faq_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_faq_faq_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_faq_faq_controller_ts_post", "label": "Post", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_controller_ts_body", "label": "Body", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_faq_faq_controller_ts_put", "label": "Put", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_controller_ts_param", "label": "Param", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_controller_ts_delete", "label": "Delete", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_controller_faqcontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_controller_faqcontroller_findactive", "label": ".findActive()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findActive()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_faq_faq_controller_faqcontroller_findall", "label": ".findAll()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_faq_faq_controller_faqcontroller_create", "label": ".create()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_faq_faq_controller_faqcontroller_reorder", "label": ".reorder()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_faq_faq_controller_faqcontroller_update", "label": ".update()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_faq_faq_controller_faqcontroller_remove", "label": ".remove()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_faq_faq_module", "label": "faq.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "faq.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/faq/faq.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_faq_faq_module_faqmodule", "label": "FaqModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FaqModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/faq/faq.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_faq_faq_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_service", "label": "faq.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "faq.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_faq_faq_service_faqservice", "label": "FaqService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FaqService", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_faq_faq_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 36, "community_name": "FaqService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_faq_faq_service_faqservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_service_faqservice_findactive", "label": ".findActive()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findActive()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_service_faqservice_findall", "label": ".findAll()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_service_faqservice_create", "label": ".create()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_service_faqservice_update", "label": ".update()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_faq_faq_service_faqservice_remove", "label": ".remove()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_faq_faq_service_faqservice_reorder", "label": ".reorder()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 36, "community_name": "FaqService", "source_file": "backend/src/faq/faq.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_home_dto_create_home_dto", "label": "create-home.dto.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "create-home.dto.ts", "community": 189, "community_name": "update-home.dto.ts", "source_file": "backend/src/home/dto/create-home.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_home_dto_create_home_dto_createhomedto", "label": "CreateHomeDto", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateHomeDto", "community": 189, "community_name": "update-home.dto.ts", "source_file": "backend/src/home/dto/create-home.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_home_dto_update_home_dto", "label": "update-home.dto.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "update-home.dto.ts", "community": 189, "community_name": "update-home.dto.ts", "source_file": "backend/src/home/dto/update-home.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_home_dto_update_home_dto_updatehomedto", "label": "UpdateHomeDto", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateHomeDto", "community": 189, "community_name": "update-home.dto.ts", "source_file": "backend/src/home/dto/update-home.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_home_entities_home_entity", "label": "home.entity.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "home.entity.ts", "community": 242, "community_name": "home.entity.ts", "source_file": "backend/src/home/entities/home.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_home_entities_home_entity_home", "label": "Home", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Home", "community": 242, "community_name": "home.entity.ts", "source_file": "backend/src/home/entities/home.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller", "label": "home.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "home.controller.ts", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_home_home_controller_homecontroller", "label": "HomeController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeController", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_home_home_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_homecontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_home_home_controller_homecontroller_gethomedata", "label": ".getHomeData()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHomeData()", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_home_home_module", "label": "home.module.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "home.module.ts", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_home_home_module_homemodule", "label": "HomeModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeModule", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_home_home_module_ts_module", "label": "Module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_service", "label": "home.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "home.service.ts", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_home_home_service_homeservice", "label": "HomeService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeService", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_home_home_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 46, "community_name": "HomeController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_service_homeservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_home_home_service_homeservice_gethomedata", "label": ".getHomeData()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHomeData()", "community": 46, "community_name": "HomeController", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller", "label": "ingredients.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ingredients.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "label": "IngredientsController", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsController", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_ingredients_ingredients_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_controller", "label": "Controller", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_get", "label": "Get", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_ingredients_ingredients_controller_ts_param", "label": "Param", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_controller_ts_post", "label": "Post", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_body", "label": "Body", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ts_patch", "label": "Patch", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_delete", "label": "Delete", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", "label": ".findAll()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", "label": ".findOne()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "label": ".create()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "label": ".update()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "label": ".remove()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_ingredients_ingredients_module", "label": "ingredients.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ingredients.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/ingredients/ingredients.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_ingredients_ingredients_module_ingredientsmodule", "label": "IngredientsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/ingredients/ingredients.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_service", "label": "ingredients.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ingredients.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice", "label": "IngredientsService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsService", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_ingredients_ingredients_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 47, "community_name": "IngredientsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", "label": ".findAll()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", "label": ".findOne()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_create", "label": ".create()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_update", "label": ".update()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", "label": ".remove()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 47, "community_name": "IngredientsService", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_main", "label": "main.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "main.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/main.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_main_bootstrap", "label": "bootstrap()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "bootstrap()", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/src/main.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_controller", "label": "menu.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "menu.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_menu_menu_controller_menucontroller", "label": "MenuController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuController", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_menu_menu_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_menu_menu_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_controller_ts_query", "label": "Query", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_menu_menu_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_menu_menu_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_controller_ts_put", "label": "Put", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_controller_ts_delete", "label": "Delete", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_controller_menucontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_controller_menucontroller_findbytype", "label": ".findByType()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findByType()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "label": ".findByTypeParam()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findByTypeParam()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_menu_menu_controller_menucontroller_findalladmin", "label": ".findAllAdmin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllAdmin()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_menu_menu_controller_menucontroller_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_menu_menu_controller_menucontroller_reorder", "label": ".reorder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_menu_menu_controller_menucontroller_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_menu_menu_controller_menucontroller_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_menu_menu_module", "label": "menu.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "menu.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/menu/menu.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_menu_menu_module_menumodule", "label": "MenuModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/menu/menu.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_service", "label": "menu.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "menu.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_menu_menu_service_menutype", "label": "MenuType", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuType", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_service_menuservice", "label": "MenuService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuService", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_menu_menu_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 23, "community_name": "MenuService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_menu_menu_service_menuservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_service_menuservice_onmoduleinit", "label": ".onModuleInit()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_service_menuservice_seedifempty", "label": ".seedIfEmpty()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".seedIfEmpty()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_service_menuservice_findbytype", "label": ".findByType()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findByType()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_service_menuservice_findalladmin", "label": ".findAllAdmin()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllAdmin()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_service_menuservice_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_service_menuservice_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_menu_menu_service_menuservice_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_menu_menu_service_menuservice_reorder", "label": ".reorder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 23, "community_name": "MenuService", "source_file": "backend/src/menu/menu.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_dto_create_order_dto", "label": "create-order.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "create-order.dto.ts", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/dto/create-order.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_dto_create_order_dto_orderitemdto", "label": "OrderItemDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderItemDto", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/dto/create-order.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_dto_create_order_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isstring", "label": "IsString", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_dto_create_order_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "CreateOrderDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateOrderDto", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/dto/create-order.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isarray", "label": "IsArray", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "validatenested", "label": "ValidateNested", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateNested", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_type", "label": "Type", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_spec", "label": "orders.controller.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.controller.spec.ts", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_controller", "label": "orders.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.controller.ts", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_orders_orders_controller_validatecoupondto", "label": "ValidateCouponDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateCouponDto", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_controller_ts_isstring", "label": "IsString", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_isnumber", "label": "IsNumber", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_orderscontroller", "label": "OrdersController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "OrdersController", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_orders_orders_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_controller_ts_apicreatedresponse", "label": "ApiCreatedResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiCreatedResponse", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_ts_req", "label": "Req", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_orders_orders_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_ts_query", "label": "Query", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_orderscontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_orderscontroller_create", "label": ".create()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "label": ".validateCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".validateCoupon()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_orders_orders_controller_orderscontroller_findall", "label": ".findAll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "label": ".retryPayment()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".retryPayment()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_orders_orders_controller_orderscontroller_findone", "label": ".findOne()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_module", "label": "orders.module.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.module.ts", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_orders_orders_module_ordersmodule", "label": "OrdersModule", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "OrdersModule", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_module_ts_module", "label": "Module", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_service_spec", "label": "orders.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.service.spec.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/orders/orders.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_orders_orders_service", "label": "orders.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.service.ts", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_orders_orders_service_ordersservice", "label": "OrdersService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "OrdersService", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_orders_orders_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 92, "community_name": "OrdersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_service_ordersservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", "label": ".generateTrackingNumber()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateTrackingNumber()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_service_ordersservice_validatecoupon", "label": ".validateCoupon()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".validateCoupon()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice_create", "label": ".create()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_orders_orders_service_ordersservice_buildordereventdata", "label": ".buildOrderEventData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".buildOrderEventData()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_service_ordersservice_updatestatus", "label": ".updateStatus()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateStatus()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice_findallbyuser", "label": ".findAllByUser()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllByUser()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice_findone", "label": ".findOne()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", "label": ".checkAndSendRefillReminders()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".checkAndSendRefillReminders()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", "label": ".releaseExpiredInventoryReservations()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".releaseExpiredInventoryReservations()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_service_ordersservice_retrypayment", "label": ".retryPayment()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".retryPayment()", "community": 92, "community_name": "OrdersService", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto", "label": "admin-transaction-filter.dto.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-transaction-filter.dto.ts", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "label": "AdminTransactionFilterDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminTransactionFilterDto", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", "label": "Type", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", "label": "IsString", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", "label": "IsIn", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsIn", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto", "label": "ebank-checkout.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ebank-checkout.dto.ts", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "label": "CreateEBankCheckoutDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateEBankCheckoutDto", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_min", "label": "Min", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Min", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring", "label": "IsString", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 88, "community_name": "CreateEBankCheckoutDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_initiate_payment_dto", "label": "initiate-payment.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "initiate-payment.dto.ts", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "label": "InitiatePaymentDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "InitiatePaymentDto", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "label": "InitiateWalletTopupDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "InitiateWalletTopupDto", "community": 106, "community_name": "InitiatePaymentDto", "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_dto_verify_payment_dto", "label": "verify-payment.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "verify-payment.dto.ts", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/dto/verify-payment.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "label": "ZibalCallbackQueryDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalCallbackQueryDto", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/dto/verify-payment.dto.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_dto_verify_payment_dto_ts_isstring", "label": "IsString", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_interfaces_payment_gateway_interface", "label": "payment-gateway.interface.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "payment-gateway.interface.ts", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "label": "PaymentRequestOptions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentRequestOptions", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", "label": "PaymentRequestResult", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentRequestResult", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", "label": "PaymentVerifyResult", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentVerifyResult", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", "label": "PaymentInquiryResult", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentInquiryResult", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", "label": "GatewayHealthResult", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GatewayHealthResult", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "label": "IPaymentGateway", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "IPaymentGateway", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", "label": ".getGatewayName()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGatewayName()", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", "label": ".requestPayment()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".requestPayment()", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", "label": ".verifyPayment()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyPayment()", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", "label": ".inquiryPayment()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquiryPayment()", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", "label": ".getStartUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getStartUrl()", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", "label": ".checkHealth()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".checkHealth()", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_controller", "label": "payment.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "payment.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 23}, {"id": "backend_src_payment_payment_controller_paymentcontroller", "label": "PaymentController", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "PaymentController", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 38}, {"id": "backend_src_payment_payment_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_controller_ts_controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "UseGuards", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 28}, {"id": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 28}, {"id": "backend_src_payment_payment_controller_ts_post", "label": "Post", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 16}, {"id": "backend_src_payment_payment_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiOperation", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 32}, {"id": "backend_src_payment_payment_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_payment_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_controller_ts_req", "label": "Req", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_payment_controller_ts_body", "label": "Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 16}, {"id": "ip", "label": "Ip", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Ip", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 5}, {"id": "headers", "label": "Headers", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Headers", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_payment_payment_controller_ts_get", "label": "Get", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 15}, {"id": "backend_src_payment_payment_controller_ts_query", "label": "Query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_payment_controller_ts_res", "label": "Res", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Res", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_payment_controller_ts_param", "label": "Param", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_payment_controller_ts_put", "label": "Put", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 0, "community_name": "Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_controller_paymentcontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", "label": ".extractRealClientIp()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".extractRealClientIp()", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "label": ".initiateOrderPayment()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".initiateOrderPayment()", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "label": ".initiateWalletTopup()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".initiateWalletTopup()", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "label": ".handleZibalCallback()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleZibalCallback()", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "label": ".verifyPaymentDirect()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyPaymentDirect()", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "label": ".handleZibalLazyCallback()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleZibalLazyCallback()", "community": 298, "community_name": ".initiateOrderPayment", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "label": ".getTransactionStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTransactionStatus()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "label": ".getAdminWallets()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminWallets()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "label": ".createRefund()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createRefund()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "label": ".inquireRefund()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquireRefund()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "label": ".getRefundList()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getRefundList()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "label": ".getGatewayReport()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGatewayReport()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "label": ".getCheckoutReport()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCheckoutReport()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "label": ".getCheckoutQueueReport()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCheckoutQueueReport()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "label": ".getSubMerchants()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSubMerchants()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "label": ".createSubMerchant()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createSubMerchant()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "label": ".editSubMerchant()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".editSubMerchant()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "label": ".getEBankAccounts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEBankAccounts()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "label": ".getEBankBalance()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEBankBalance()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "label": ".getEBankStatements()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEBankStatements()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "label": ".createEBankCheckout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".createEBankCheckout()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "label": ".getEBankCheckoutList()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEBankCheckoutList()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "label": ".cancelEBankCheckout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".cancelEBankCheckout()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "label": ".getEBankIdentifiedPayments()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getEBankIdentifiedPayments()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "label": ".changeIdentifiedPaymentStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".changeIdentifiedPaymentStatus()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "label": ".getAdminTransactions()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminTransactions()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "label": ".getAdminStats()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminStats()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "label": ".reconcilePending()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".reconcilePending()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "label": ".liveInquiryPost()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".liveInquiryPost()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "label": ".liveInquiry()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".liveInquiry()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "label": ".manualVerify()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".manualVerify()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "label": ".manualReject()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".manualReject()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "label": ".getHealth()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHealth()", "community": 0, "community_name": "Roles", "source_file": "backend/src/payment/payment.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_module", "label": "payment.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "payment.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/payment/payment.module.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_payment_payment_module_paymentmodule", "label": "PaymentModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/payment/payment.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_payment_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_service", "label": "payment.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "payment.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_payment_payment_service_clientmetadata", "label": "ClientMetadata", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ClientMetadata", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_service_paymentservice", "label": "PaymentService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "PaymentService", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_payment_payment_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 294, "community_name": "ZibalService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_payment_service_paymentservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "label": ".initiateOrderPayment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".initiateOrderPayment()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "label": ".initiateWalletTopup()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".initiateWalletTopup()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": ".verifyAndProcess()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyAndProcess()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", "label": ".reconcilePendingTransactions()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".reconcilePendingTransactions()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_payment_payment_service_paymentservice_gettransaction", "label": ".getTransaction()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTransaction()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", "label": ".getAdminTransactions()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminTransactions()", "community": 97, "community_name": "AdminTransactionFilterDto", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", "label": ".getAdminTransactionStats()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminTransactionStats()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "label": ".adminLiveInquiry()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminLiveInquiry()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", "label": ".getTransactionByTrackId()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTransactionByTrackId()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "label": ".inquiryDirectZibal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquiryDirectZibal()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", "label": ".adminManualVerify()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminManualVerify()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", "label": ".adminManualReject()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminManualReject()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", "label": ".checkGatewayHealth()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".checkGatewayHealth()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", "label": ".handleAdminGatewayRefund()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleAdminGatewayRefund()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/payment.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_ebank_service", "label": "zibal-ebank.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "zibal-ebank.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", "label": "EBankCheckoutOptions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EBankCheckoutOptions", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", "label": "EBankCheckoutListFilter", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EBankCheckoutListFilter", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", "label": "EBankStatementFilter", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EBankStatementFilter", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", "label": "EBankIdentifiedPaymentFilter", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EBankIdentifiedPaymentFilter", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice", "label": "ZibalEBankService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ZibalEBankService", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 19}, {"id": "backend_src_payment_zibal_ebank_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 297, "community_name": "ZibalEBankService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", "label": ".getAccessToken()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAccessToken()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": ".getDefaultAccountId()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDefaultAccountId()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": ".request()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".request()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", "label": ".createCheckout()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCheckout()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", "label": ".inquireCheckout()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquireCheckout()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", "label": ".getCheckoutList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCheckoutList()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", "label": ".cancelCheckout()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".cancelCheckout()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", "label": ".getAccountList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAccountList()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", "label": ".getAccountBalance()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAccountBalance()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", "label": ".getStatementList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getStatementList()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", "label": ".getIdentifiedPaymentList()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getIdentifiedPaymentList()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", "label": ".changeIdentifiedPaymentStatus()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".changeIdentifiedPaymentStatus()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", "label": ".inquireIdentifiedPayment()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquireIdentifiedPayment()", "community": 297, "community_name": "ZibalEBankService", "source_file": "backend/src/payment/zibal-ebank.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service", "label": "zibal.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "zibal.service.ts", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 16}, {"id": "backend_src_payment_zibal_service_zibalrequestresponse", "label": "ZibalRequestResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalRequestResponse", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_service_zibalverifyresponse", "label": "ZibalVerifyResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalVerifyResponse", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_service_zibalinquiryresponse", "label": "ZibalInquiryResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalInquiryResponse", "community": 86, "community_name": "zibal.service.ts", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_service_zibalservice", "label": "ZibalService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ZibalService", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 37}, {"id": "backend_src_payment_zibal_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 294, "community_name": "ZibalService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_service_zibalservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_zibal_service_zibalservice_getgatewayname", "label": ".getGatewayName()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGatewayName()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": ".callWithRetry()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".callWithRetry()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": ".getMerchant()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMerchant()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", "label": ".getFrontendUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFrontendUrl()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", "label": ".getBackendUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBackendUrl()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_requestpayment", "label": ".requestPayment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".requestPayment()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_payment_zibal_service_zibalservice_getstarturl", "label": ".getStartUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getStartUrl()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_verifypayment", "label": ".verifyPayment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyPayment()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "label": ".inquiryPayment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquiryPayment()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_payment_zibal_service_zibalservice_checkhealth", "label": ".checkHealth()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".checkHealth()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", "label": ".requestLazyPayment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".requestLazyPayment()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", "label": ".verifyLazyPayment()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyLazyPayment()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_getaccesstoken", "label": ".getAccessToken()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAccessToken()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": ".apiRequest()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".apiRequest()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_payment_zibal_service_zibalservice_getwalletlist", "label": ".getWalletList()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getWalletList()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_getwalletbalance", "label": ".getWalletBalance()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getWalletBalance()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_zibal_service_zibalservice_requestrefund", "label": ".requestRefund()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".requestRefund()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_inquirerefund", "label": ".inquireRefund()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquireRefund()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_getrefundlist", "label": ".getRefundList()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getRefundList()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", "label": ".getGatewayTransactionsReport()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getGatewayTransactionsReport()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", "label": ".getCheckoutReport()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCheckoutReport()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", "label": ".getCheckoutQueueReport()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCheckoutQueueReport()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", "label": ".inquireCheckoutReport()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".inquireCheckoutReport()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", "label": ".createSubMerchant()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".createSubMerchant()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", "label": ".getSubMerchantList()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSubMerchantList()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", "label": ".editSubMerchant()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".editSubMerchant()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": ".getResultMessage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getResultMessage()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", "label": ".getStatusMessage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getStatusMessage()", "community": 294, "community_name": "ZibalService", "source_file": "backend/src/payment/zibal.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_dto_create_health_log_dto", "label": "create-health-log.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "create-health-log.dto.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/create-health-log.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "label": "CreateHealthLogDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateHealthLogDto", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/create-health-log.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto", "label": "create-pet.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "create-pet.dto.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/create-pet.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "CreatePetDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreatePetDto", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/create-pet.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isarray", "label": "IsArray", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto", "label": "create-reminder.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "create-reminder.dto.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/create-reminder.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "label": "CreateReminderDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateReminderDto", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/create-reminder.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_update_pet_dto", "label": "update-pet.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "update-pet.dto.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/update-pet.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "UpdatePetDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdatePetDto", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/dto/update-pet.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller_spec", "label": "pets.controller.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "pets.controller.spec.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_pets_controller", "label": "pets/pets.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "pets/pets.controller.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_pets_pets_controller_petscontroller", "label": "PetsController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "PetsController", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_pets_pets_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_post", "label": "Post", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller_ts_useinterceptors", "label": "UseInterceptors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseInterceptors", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 9}, {"id": "backend_src_pets_pets_controller_ts_uploadedfile", "label": "UploadedFile", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadedFile", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apicreatedresponse", "label": "ApiCreatedResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiCreatedResponse", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_req", "label": "Req", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_pets_controller_ts_body", "label": "Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_pets_controller_ts_query", "label": "Query", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_controller_ts_param", "label": "Param", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_controller_ts_patch", "label": "Patch", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_delete", "label": "Delete", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_petscontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "label": ".uploadPetImage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".uploadPetImage()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller_petscontroller_create", "label": ".create()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_pets_controller_petscontroller_findall", "label": ".findAll()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_controller_petscontroller_findone", "label": ".findOne()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_controller_petscontroller_update", "label": ".update()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_pets_pets_controller_petscontroller_remove", "label": ".remove()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_controller_petscontroller_addreminder", "label": ".addReminder()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".addReminder()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_controller_petscontroller_togglereminder", "label": ".toggleReminder()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleReminder()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "label": ".addHealthLog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".addHealthLog()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_module", "label": "pets.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "pets.module.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_module_petsmodule", "label": "PetsModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PetsModule", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_service_spec", "label": "pets.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "pets.service.spec.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/pets/pets.service.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_pets_service", "label": "pets/pets.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "pets/pets.service.ts", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_pets_pets_service_reminderinput", "label": "ReminderInput", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ReminderInput", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_service_healthloginput", "label": "HealthLogInput", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthLogInput", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_service_petsservice", "label": "PetsService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "PetsService", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_pets_pets_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 75, "community_name": "PetsController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_service_petsservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_service_petsservice_create", "label": ".create()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_service_petsservice_findalladmin", "label": ".findAllAdmin()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllAdmin()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_service_petsservice_findallbyuser", "label": ".findAllByUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllByUser()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_service_petsservice_findone", "label": ".findOne()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_service_petsservice_update", "label": ".update()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_petsservice_remove", "label": ".remove()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_service_petsservice_addreminder", "label": ".addReminder()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".addReminder()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_petsservice_togglereminder", "label": ".toggleReminder()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleReminder()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_petsservice_addhealthlog", "label": ".addHealthLog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".addHealthLog()", "community": 75, "community_name": "PetsController", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_controller", "label": "prescriptions.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "prescriptions.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_prescriptions_prescriptions_controller_userreqpayload", "label": "UserReqPayload", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserReqPayload", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "label": "PrescriptionsController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsController", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_req", "label": "Req", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_patch", "label": "Patch", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "label": ".create()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "label": ".findAll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "label": ".findOne()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "label": ".review()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".review()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_prescriptions_prescriptions_module", "label": "prescriptions.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "prescriptions.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/prescriptions/prescriptions.module.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", "label": "PrescriptionsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/prescriptions/prescriptions.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_service", "label": "prescriptions.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prescriptions.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "label": "PrescriptionsService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsService", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_prescriptions_prescriptions_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 52, "community_name": "PrescriptionsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", "label": ".create()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", "label": ".findAll()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", "label": ".findOne()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", "label": ".review()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".review()", "community": 52, "community_name": "PrescriptionsService", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_prisma_prisma_module", "label": "prisma.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "prisma.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/prisma/prisma.module.ts", "file_type": "code", "degree": 19}, {"id": "backend_src_prisma_prisma_module_prismamodule", "label": "PrismaModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "PrismaModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/prisma/prisma.module.ts", "file_type": "code", "degree": 19}, {"id": "backend_src_prisma_prisma_module_ts_global", "label": "Global", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prisma_prisma_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prisma_prisma_service", "label": "prisma.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 23.3, "font": {"size": 12, "color": "#ffffff"}, "title": "prisma.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 48}, {"id": "backend_src_prisma_prisma_service_prismaservice", "label": "PrismaService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 35.3, "font": {"size": 12, "color": "#ffffff"}, "title": "PrismaService", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 91}, {"id": "backend_src_prisma_prisma_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 108, "community_name": "PrismaService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", "label": ".onModuleInit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", "label": ".ensureTablesExist()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ensureTablesExist()", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", "label": ".onModuleDestroy()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleDestroy()", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto", "label": "get-products.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "get-products.dto.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/dto/get-products.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "GetProductsDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GetProductsDto", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/dto/get-products.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto_ts_isenum", "label": "IsEnum", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEnum", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_spec", "label": "products.controller.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "products.controller.spec.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_products_products_controller", "label": "products.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "products.controller.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_products_products_controller_productscontroller", "label": "ProductsController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductsController", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_products_products_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_products_products_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_products_products_controller_ts_query", "label": "Query", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_param", "label": "Param", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_products_products_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_patch", "label": "Patch", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_body", "label": "Body", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_productscontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_products_controller_productscontroller_findall", "label": ".findAll()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_products_products_controller_productscontroller_getactivefilters", "label": ".getActiveFilters()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getActiveFilters()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_products_products_controller_productscontroller_getnavigationfilters", "label": ".getNavigationFilters()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNavigationFilters()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_products_products_controller_productscontroller_getdosageconfig", "label": ".getDosageConfig()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDosageConfig()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "label": ".updateDosageConfig()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDosageConfig()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_products_products_controller_productscontroller_findone", "label": ".findOne()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_products_products_module", "label": "products.module.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "products.module.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_products_products_module_productsmodule", "label": "ProductsModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductsModule", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_products_products_module_ts_module", "label": "Module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_service_spec", "label": "products.service.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "products.service.spec.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_products_products_service", "label": "products.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "products.service.ts", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_products_products_service_productsservice", "label": "ProductsService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductsService", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_products_products_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 76, "community_name": "RevalidationService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_service_productsservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_products_products_service_productsservice_findall", "label": ".findAll()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_products_products_service_productsservice_findone", "label": ".findOne()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_products_service_productsservice_getactivefilters", "label": ".getActiveFilters()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getActiveFilters()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_products_service_productsservice_getnavigationfilters", "label": ".getNavigationFilters()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNavigationFilters()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_products_service_productsservice_getdosageconfig", "label": ".getDosageConfig()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDosageConfig()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_products_service_productsservice_updatedosageconfig", "label": ".updateDosageConfig()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDosageConfig()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_products_torob_controller", "label": "torob.controller.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "torob.controller.ts", "community": 147, "community_name": "torob.controller.ts", "source_file": "backend/src/products/torob.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_products_torob_controller_buildtorobproducttitle", "label": "buildTorobProductTitle()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildTorobProductTitle()", "community": 147, "community_name": "torob.controller.ts", "source_file": "backend/src/products/torob.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_torob_controller_buildtorobproductspec", "label": "buildTorobProductSpec()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildTorobProductSpec()", "community": 147, "community_name": "torob.controller.ts", "source_file": "backend/src/products/torob.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_torob_controller_torobcontroller", "label": "TorobController", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TorobController", "community": 147, "community_name": "torob.controller.ts", "source_file": "backend/src/products/torob.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_products_torob_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 147, "community_name": "torob.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_torob_controller_ts_controller", "label": "Controller", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 147, "community_name": "torob.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_torob_controller_ts_get", "label": "Get", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 147, "community_name": "torob.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_torob_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 147, "community_name": "torob.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_torob_controller_ts_query", "label": "Query", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 147, "community_name": "torob.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_torob_controller_torobcontroller_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 147, "community_name": "torob.controller.ts", "source_file": "backend/src/products/torob.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "label": ".getTorobProducts()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTorobProducts()", "community": 147, "community_name": "torob.controller.ts", "source_file": "backend/src/products/torob.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_redis_redis_module", "label": "redis.module.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "redis.module.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.module.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_redis_redis_module_redismodule", "label": "RedisModule", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RedisModule", "community": 62, "community_name": "admin.module.ts", "source_file": "backend/src/redis/redis.module.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_redis_redis_module_ts_global", "label": "Global", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_module_ts_module", "label": "Module", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 62, "community_name": "admin.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_service_spec", "label": "redis.service.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "redis.service.spec.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.spec.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_redis_redis_service", "label": "redis.service.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "redis.service.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_redis_redis_service_redisservice", "label": "RedisService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "RedisService", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 19}, {"id": "backend_src_redis_redis_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 123, "community_name": "auth.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_service_redisservice_onmoduleinit", "label": ".onModuleInit()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", "label": ".onModuleDestroy()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleDestroy()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_service_redisservice_set", "label": ".set()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".set()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_service_redisservice_get", "label": ".get()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_redis_redis_service_redisservice_del", "label": ".del()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".del()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_redis_redis_service_redisservice_incr", "label": ".incr()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".incr()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_redis_redis_service_redisservice_ttl", "label": ".ttl()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".ttl()", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_dto_create_review_dto", "label": "create-review.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create-review.dto.ts", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/dto/create-review.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_dto_create_review_dto_createreviewdto", "label": "CreateReviewDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateReviewDto", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/dto/create-review.dto.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_create_review_dto_ts_isint", "label": "IsInt", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsInt", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_create_review_dto_ts_min", "label": "Min", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Min", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "max", "label": "Max", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Max", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_create_review_dto_ts_isstring", "label": "IsString", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_create_review_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_create_review_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_update_review_dto", "label": "update-review.dto.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "update-review.dto.ts", "community": 204, "community_name": "reviews.service.ts", "source_file": "backend/src/reviews/dto/update-review.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "label": "UpdateReviewDto", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateReviewDto", "community": 204, "community_name": "reviews.service.ts", "source_file": "backend/src/reviews/dto/update-review.dto.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 204, "community_name": "reviews.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_update_review_dto_ts_isstring", "label": "IsString", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 204, "community_name": "reviews.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_update_review_dto_ts_isin", "label": "IsIn", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsIn", "community": 204, "community_name": "reviews.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_dto_update_review_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 204, "community_name": "reviews.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller", "label": "reviews.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "reviews.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller", "label": "ReviewsController", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ReviewsController", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_reviews_reviews_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_ts_controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_ts_throttle", "label": "Throttle", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Throttle", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_ts_post", "label": "Post", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_reviews_reviews_controller_ts_param", "label": "Param", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_reviews_reviews_controller_ts_body", "label": "Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_reviews_controller_ts_req", "label": "Req", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_ts_get", "label": "Get", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_reviews_controller_ts_query", "label": "Query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_reviews_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_reviews_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_reviews_controller_ts_patch", "label": "Patch", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_ts_delete", "label": "Delete", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "label": ".createReview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".createReview()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "label": ".getProductReviews()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductReviews()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "label": ".getAdminReviews()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminReviews()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "label": ".updateReviewStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateReviewStatus()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "label": ".deleteReview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteReview()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_reviews_reviews_module", "label": "reviews.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "reviews.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/reviews/reviews.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_reviews_reviews_module_reviewsmodule", "label": "ReviewsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ReviewsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/reviews/reviews.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_reviews_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_service", "label": "reviews.service.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "reviews.service.ts", "community": 204, "community_name": "reviews.service.ts", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_reviews_reviews_service_reviewsservice", "label": "ReviewsService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ReviewsService", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_reviews_reviews_service_ts_injectable", "label": "Injectable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 10, "community_name": "CreateReviewDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_reviews_reviews_service_reviewsservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 76, "community_name": "RevalidationService", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_reviews_service_reviewsservice_createreview", "label": ".createReview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".createReview()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", "label": ".getProductReviews()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductReviews()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", "label": ".getAdminReviews()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminReviews()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", "label": ".updateReviewStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateReviewStatus()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", "label": ".deleteReview()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteReview()", "community": 10, "community_name": "CreateReviewDto", "source_file": "backend/src/reviews/reviews.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_seo_seo_controller", "label": "seo.controller.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "seo.controller.ts", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_seo_seo_controller_seocontroller", "label": "SeoController", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoController", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_seo_seo_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_controller_ts_controller", "label": "Controller", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_controller_ts_get", "label": "Get", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_controller_ts_param", "label": "Param", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_controller_seocontroller_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_controller_seocontroller_getsitemap", "label": ".getSitemap()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSitemap()", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_seo_seo_controller_seocontroller_getproductschema", "label": ".getProductSchema()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductSchema()", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_seo_seo_module", "label": "seo.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "seo.module.ts", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_seo_seo_module_seomodule", "label": "SeoModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoModule", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_seo_seo_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_service", "label": "seo.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "seo.service.ts", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_seo_seo_service_seoservice", "label": "SeoService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoService", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_seo_seo_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 77, "community_name": "seo.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_service_seoservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_service_seoservice_getsitemapurls", "label": ".getSitemapUrls()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSitemapUrls()", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_service_seoservice_getproductschema", "label": ".getProductSchema()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductSchema()", "community": 77, "community_name": "seo.module.ts", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_default_ui_texts", "label": "default-ui-texts.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "default-ui-texts.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/settings/default-ui-texts.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_default_ui_texts_default_ui_texts", "label": "DEFAULT_UI_TEXTS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_UI_TEXTS", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/settings/default-ui-texts.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_dto_sms_log_query_dto", "label": "sms-log-query.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sms-log-query.dto.ts", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "label": "SmsLogQueryDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsLogQueryDto", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_dto_sms_log_query_dto_ts_type", "label": "Type", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", "label": "IsString", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_dto_sms_log_query_dto_ts_isin", "label": "IsIn", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsIn", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_spec", "label": "settings.controller.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.controller.spec.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/settings/settings.controller.spec.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_settings_settings_controller", "label": "settings.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_settings_settings_controller_settingscontroller", "label": "SettingsController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "SettingsController", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 33}, {"id": "backend_src_settings_settings_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_controller", "label": "Controller", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_get", "label": "Get", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 11}, {"id": "backend_src_settings_settings_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiOperation", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 27}, {"id": "backend_src_settings_settings_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "UseGuards", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 23}, {"id": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 23}, {"id": "backend_src_settings_settings_controller_ts_put", "label": "Put", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_controller_ts_param", "label": "Param", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_settings_settings_controller_ts_body", "label": "Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 13}, {"id": "backend_src_settings_settings_controller_ts_patch", "label": "Patch", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_settings_settings_controller_ts_delete", "label": "Delete", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_controller_ts_post", "label": "Post", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_controller_ts_query", "label": "Query", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_settingscontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "label": ".getUiTexts()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUiTexts()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_controller_settingscontroller_putuitext", "label": ".putUiText()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".putUiText()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "label": ".patchUiText()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".patchUiText()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "label": ".putBulkUiTexts()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".putBulkUiTexts()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "label": ".getFinancial()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFinancial()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "label": ".updateFinancial()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateFinancial()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "label": ".getScientificTerms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getScientificTerms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "label": ".upsertScientificTerm()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".upsertScientificTerm()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "label": ".deleteScientificTerm()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteScientificTerm()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "label": ".getSeoSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSeoSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "label": ".updateSeoSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSeoSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "label": ".getFinancialSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFinancialSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "label": ".updateFinancialSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateFinancialSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "label": ".getSystemSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSystemSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "label": ".updateSystemSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSystemSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "label": ".getSmsSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "label": ".getSmsCredit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsCredit()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "label": ".updateSmsSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSmsSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_testsms", "label": ".testSms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".testSms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "label": ".getSmsEvents()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsEvents()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "label": ".testSmsRule()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".testSmsRule()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "label": ".getPatterns()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPatterns()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_addpattern", "label": ".addPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".addPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_editpattern", "label": ".editPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".editPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "label": ".getSmsLogs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsLogs()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "label": ".deleteSmsLog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmsLog()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "label": ".clearAllSmsLogs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".clearAllSmsLogs()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_module", "label": "settings.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/settings/settings.module.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_settings_settings_module_settingsmodule", "label": "SettingsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/settings/settings.module.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_service_spec", "label": "settings.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.service.spec.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/settings/settings.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_settings_settings_service", "label": "settings.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 16}, {"id": "backend_src_settings_settings_service_scientifictermdata", "label": "ScientificTermData", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTermData", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_canonical_aliases", "label": "CANONICAL_ALIASES", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CANONICAL_ALIASES", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice", "label": "SettingsService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "SettingsService", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 34}, {"id": "backend_src_settings_settings_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 8, "community_name": "SmsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_service_settingsservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", "label": ".onModuleInit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", "label": ".seedDefaultUiTexts()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".seedDefaultUiTexts()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": ".getUiTexts()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUiTexts()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_settings_settings_service_settingsservice_updateuitext", "label": ".updateUiText()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUiText()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "label": ".updateBulkUiTexts()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBulkUiTexts()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", "label": ".getFinancialSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFinancialSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", "label": ".updateFinancialSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateFinancialSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_service_settingsservice_getscientificterms", "label": ".getScientificTerms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getScientificTerms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", "label": ".upsertScientificTerm()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".upsertScientificTerm()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", "label": ".deleteScientificTerm()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteScientificTerm()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "label": ".getCategorySetting()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategorySetting()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "label": ".updateCategorySetting()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCategorySetting()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_service_settingsservice_getsmssettings", "label": ".getSmsSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_getsmscredit", "label": ".getSmsCredit()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsCredit()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", "label": ".updateSmsSettings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSmsSettings()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_testsms", "label": ".testSms()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".testSms()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_getsmsevents", "label": ".getSmsEvents()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsEvents()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_testsmsrule", "label": ".testSmsRule()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".testSmsRule()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_getpatterns", "label": ".getPatterns()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPatterns()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_addpattern", "label": ".addPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".addPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_editpattern", "label": ".editPattern()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".editPattern()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_getsmslogs", "label": ".getSmsLogs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmsLogs()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_service_settingsservice_deletesmslog", "label": ".deleteSmsLog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmsLog()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", "label": ".clearAllSmsLogs()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".clearAllSmsLogs()", "community": 8, "community_name": "SmsService", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_controller", "label": "smart-advisor.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "label": "SmartAdvisorController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorController", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", "label": "Patch", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", "label": "Delete", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", "label": ".findAll()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_smart_advisor_smart_advisor_module", "label": "smart-advisor.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", "label": "SmartAdvisorModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_service", "label": "smart-advisor.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "label": "SmartAdvisorService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorService", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 53, "community_name": "SmartAdvisorService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", "label": ".findAll()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", "label": ".update()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 53, "community_name": "SmartAdvisorService", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller", "label": "testimonials.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "testimonials.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "label": "TestimonialsController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsController", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_testimonials_testimonials_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_get", "label": "Get", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_testimonials_testimonials_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_testimonials_testimonials_controller_ts_post", "label": "Post", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_body", "label": "Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_ts_patch", "label": "Patch", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_param", "label": "Param", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_ts_delete", "label": "Delete", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", "label": ".findAll()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", "label": ".findHomepage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findHomepage()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "label": ".create()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "label": ".update()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "label": ".remove()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_testimonials_testimonials_module", "label": "testimonials.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "testimonials.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/testimonials/testimonials.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_testimonials_testimonials_module_testimonialsmodule", "label": "TestimonialsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/testimonials/testimonials.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_testimonials_testimonials_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_service", "label": "testimonials.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "testimonials.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice", "label": "TestimonialsService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsService", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_testimonials_testimonials_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 44, "community_name": "TestimonialsService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", "label": ".findAll()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage", "label": ".findHomepage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findHomepage()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_create", "label": ".create()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_update", "label": ".update()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", "label": ".remove()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 44, "community_name": "TestimonialsService", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_dto_create_ticket_dto", "label": "create-ticket.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "create-ticket.dto.ts", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "label": "CreateTicketDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateTicketDto", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "label": "ReplyTicketDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ReplyTicketDto", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "label": "AdminUpdateTicketDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminUpdateTicketDto", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_tickets_dto_ticket_query_dto", "label": "ticket-query.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ticket-query.dto.ts", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "label": "TicketQueryDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketQueryDto", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_dto_ticket_query_dto_ts_type", "label": "Type", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_controller", "label": "tickets.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tickets.controller.ts", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 16}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller", "label": "TicketsController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketsController", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_tickets_tickets_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_tickets_tickets_controller_ts_post", "label": "Post", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_tickets_tickets_controller_ts_req", "label": "Req", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_tickets_tickets_controller_ts_body", "label": "Body", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_tickets_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_tickets_controller_ts_param", "label": "Param", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_tickets_controller_ts_query", "label": "Query", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_controller_ts_put", "label": "Put", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "label": ".createTicket()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".createTicket()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "label": ".getMyTickets()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMyTickets()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "label": ".getTicketDetails()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTicketDetails()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "label": ".replyTicket()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".replyTicket()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "label": ".getAdminTickets()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminTickets()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "label": ".updateTicketStatus()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateTicketStatus()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_tickets_tickets_module", "label": "tickets.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "tickets.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/tickets/tickets.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_tickets_tickets_module_ticketsmodule", "label": "TicketsModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketsModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/tickets/tickets.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_tickets_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_service", "label": "tickets.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "tickets.service.ts", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_tickets_tickets_service_ticketsservice", "label": "TicketsService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketsService", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_tickets_tickets_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 6, "community_name": "tickets.controller.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_tickets_tickets_service_ticketsservice_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", "label": ".generateTicketNumber()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateTicketNumber()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_tickets_service_ticketsservice_createticket", "label": ".createTicket()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".createTicket()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", "label": ".getUserTickets()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserTickets()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", "label": ".getTicketDetails()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTicketDetails()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", "label": ".replyToTicket()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".replyToTicket()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", "label": ".getAdminTickets()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAdminTickets()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", "label": ".updateTicketStatus()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateTicketStatus()", "community": 6, "community_name": "tickets.controller.ts", "source_file": "backend/src/tickets/tickets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_users_dto_address_dto", "label": "address.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "address.dto.ts", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/dto/address.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_dto_address_dto_addressdto", "label": "AddressDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressDto", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/dto/address.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_dto_address_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isstring", "label": "IsString", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto", "label": "update-profile.dto.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "update-profile.dto.ts", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/dto/update-profile.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "UpdateProfileDto", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateProfileDto", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/dto/update-profile.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_isstring", "label": "IsString", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_minlength", "label": "MinLength", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_spec", "label": "users.controller.spec.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "users.controller.spec.ts", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_controller", "label": "users.controller.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "users.controller.ts", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_users_users_controller_userscontroller", "label": "UsersController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UsersController", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_users_users_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_controller", "label": "Controller", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_ts_get", "label": "Get", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_users_users_controller_ts_req", "label": "Req", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_ts_patch", "label": "Patch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_ts_body", "label": "Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_controller_ts_post", "label": "Post", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_ts_apicreatedresponse", "label": "ApiCreatedResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiCreatedResponse", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_ts_param", "label": "Param", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_controller_ts_delete", "label": "Delete", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_userscontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_userscontroller_getprofile", "label": ".getProfile()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProfile()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_userscontroller_updateprofile", "label": ".updateProfile()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProfile()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_users_controller_userscontroller_addaddress", "label": ".addAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".addAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_users_users_controller_userscontroller_updateaddress", "label": ".updateAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_users_controller_userscontroller_deleteaddress", "label": ".deleteAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "label": ".setDefaultAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".setDefaultAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_users_users_controller_userscontroller_topupwallet", "label": ".topUpWallet()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".topUpWallet()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_users_users_module", "label": "users.module.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "users.module.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/users/users.module.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_module_usersmodule", "label": "UsersModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UsersModule", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/src/users/users.module.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_module_ts_module", "label": "Module", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 123, "community_name": "auth.service.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_service_spec", "label": "users.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "users.service.spec.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/users/users.service.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_service", "label": "users.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "users.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_users_users_service_useraddressinput", "label": "UserAddressInput", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserAddressInput", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_service_usersservice", "label": "UsersService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "UsersService", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_users_users_service_ts_injectable", "label": "Injectable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_service_ts_optional", "label": "Optional", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Optional", "community": 11, "community_name": "UsersService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_service_usersservice_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_service_usersservice_findbyid", "label": ".findById()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findById()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_service_usersservice_update", "label": ".update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_service_usersservice_addaddress", "label": ".addAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".addAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_service_usersservice_updateaddress", "label": ".updateAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_service_usersservice_deleteaddress", "label": ".deleteAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_service_usersservice_setdefaultaddress", "label": ".setDefaultAddress()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".setDefaultAddress()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_service_usersservice_topupwallet", "label": ".topUpWallet()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".topUpWallet()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_service_usersservice_findbyphone", "label": ".findByPhone()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findByPhone()", "community": 11, "community_name": "UsersService", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto", "label": "create-video.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "create-video.dto.ts", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/dto/create-video.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "CreateVideoDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateVideoDto", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/dto/create-video.dto.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_videos_dto_create_video_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isstring", "label": "IsString", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_updatevideodto", "label": "UpdateVideoDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateVideoDto", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/dto/create-video.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_dto_get_videos_query_dto", "label": "get-videos-query.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "get-videos-query.dto.ts", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "label": "GetVideosQueryDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "GetVideosQueryDto", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_get_videos_query_dto_ts_transform", "label": "Transform", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Transform", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller", "label": "videos.controller.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "videos.controller.ts", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_videos_videos_controller_videoscontroller", "label": "VideosController", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosController", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_videos_videos_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_get", "label": "Get", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_videos_videos_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_query", "label": "Query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_param", "label": "Param", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_controller_ts_post", "label": "Post", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_controller_ts_body", "label": "Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_ts_put", "label": "Put", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_delete", "label": "Delete", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_videoscontroller_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_videoscontroller_findall", "label": ".findAll()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_videos_videos_controller_videoscontroller_findone", "label": ".findOne()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_videos_videos_controller_videoscontroller_create", "label": ".create()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_videos_videos_controller_videoscontroller_update", "label": ".update()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_videos_videos_controller_videoscontroller_remove", "label": ".remove()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_videos_videos_module", "label": "videos.module.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "videos.module.ts", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_videos_videos_module_videosmodule", "label": "VideosModule", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosModule", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_module_ts_module", "label": "Module", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_service", "label": "videos.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "videos.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_videos_videos_service_videoquery", "label": "VideoQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoQuery", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_service_videosservice", "label": "VideosService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosService", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_videos_videos_service_ts_injectable", "label": "Injectable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 20, "community_name": "CreateVideoDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_service_videosservice_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_service_videosservice_findall", "label": ".findAll()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_service_videosservice_findone", "label": ".findOne()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_videos_videos_service_videosservice_create", "label": ".create()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_service_videosservice_update", "label": ".update()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_videos_videos_service_videosservice_remove", "label": ".remove()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 20, "community_name": "CreateVideoDto", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto", "label": "wholesale-apply.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale-apply.dto.ts", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "WholesaleApplyDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplyDto", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 145, "community_name": "WholesaleApplyDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller", "label": "wholesale.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale.controller.ts", "community": 18, "community_name": "JwtAuthGuard", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "label": "WholesaleController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleController", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_wholesale_wholesale_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_controller_ts_request", "label": "Request", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_put", "label": "Put", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "label": ".applyForWholesale()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".applyForWholesale()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "label": ".getWholesaleRequests()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getWholesaleRequests()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "label": ".approveWholesaleRequest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".approveWholesaleRequest()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "label": ".rejectWholesaleRequest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".rejectWholesaleRequest()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_wholesale_module", "label": "wholesale.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale.module.ts", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/wholesale/wholesale.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_wholesale_module_wholesalemodule", "label": "WholesaleModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleModule", "community": 1, "community_name": "app.module.ts", "source_file": "backend/src/wholesale/wholesale.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wholesale_wholesale_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 1, "community_name": "app.module.ts", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_service", "label": "wholesale.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale.service.ts", "community": 108, "community_name": "PrismaService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice", "label": "WholesaleService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleService", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_wholesale_wholesale_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 33, "community_name": "WholesaleService", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", "label": ".applyForWholesale()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".applyForWholesale()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", "label": ".getWholesaleRequests()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getWholesaleRequests()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", "label": ".approveWholesaleRequest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".approveWholesaleRequest()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", "label": ".rejectWholesaleRequest()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".rejectWholesaleRequest()", "community": 33, "community_name": "WholesaleService", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_dto_create_wiki_dto", "label": "create-wiki.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "create-wiki.dto.ts", "community": 190, "community_name": "update-wiki.dto.ts", "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_dto_create_wiki_dto_createwikidto", "label": "CreateWikiDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateWikiDto", "community": 190, "community_name": "update-wiki.dto.ts", "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_dto_update_wiki_dto", "label": "update-wiki.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "update-wiki.dto.ts", "community": 190, "community_name": "update-wiki.dto.ts", "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", "label": "UpdateWikiDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateWikiDto", "community": 190, "community_name": "update-wiki.dto.ts", "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_entities_wiki_entity", "label": "wiki.entity.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki.entity.ts", "community": 243, "community_name": "wiki.entity.ts", "source_file": "backend/src/wiki/entities/wiki.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_entities_wiki_entity_wiki", "label": "Wiki", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Wiki", "community": 243, "community_name": "wiki.entity.ts", "source_file": "backend/src/wiki/entities/wiki.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller", "label": "wiki/wiki.controller.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/wiki.controller.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wiki_wiki_controller_wikicontroller", "label": "WikiController", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiController", "community": 129, "community_name": "WikiController", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wiki_wiki_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_controller", "label": "Controller", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_get", "label": "Get", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_ts_query", "label": "Query", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_param", "label": "Param", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 129, "community_name": "WikiController", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_wikicontroller_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 129, "community_name": "WikiController", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_wikicontroller_findall", "label": ".findAll()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 129, "community_name": "WikiController", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wiki_wiki_controller_wikicontroller_findone", "label": ".findOne()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 129, "community_name": "WikiController", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wiki_wiki_module", "label": "wiki.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki.module.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wiki_wiki_module_wikimodule", "label": "WikiModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiModule", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wiki_wiki_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_service", "label": "wiki/wiki.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/wiki.service.ts", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_wiki_wiki_service_wikiservice", "label": "WikiService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiService", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wiki_wiki_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 107, "community_name": "PaginationDto", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_service_wikiservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_service_wikiservice_findall", "label": ".findAll()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_service_wikiservice_findonebykey", "label": ".findOneByKey()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOneByKey()", "community": 107, "community_name": "PaginationDto", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_d", "label": "app-audit-verification.e2e-spec.d.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "app-audit-verification.e2e-spec.d.ts", "community": 270, "community_name": "app-audit-verification.e2e-spec.d.ts", "source_file": "backend/test/app-audit-verification.e2e-spec.d.ts", "file_type": "code", "degree": 0}, {"id": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "label": "app-audit-verification.e2e-spec.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "app-audit-verification.e2e-spec.js", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 15}, {"id": "backend_test_app_audit_verification_e2e_spec_testing_1", "label": "testing_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "testing_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_common_1", "label": "common_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "common_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_supertest_1", "label": "supertest_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "supertest_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_app_module_1", "label": "app_module_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "app_module_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_jwt_1", "label": "jwt_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jwt_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_client_1", "label": "client_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "client_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_http_exception_filter_1", "label": "http_exception_filter_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "http_exception_filter_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_prisma_exception_filter_1", "label": "prisma_exception_filter_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma_exception_filter_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_decimal_interceptor_1", "label": "decimal_interceptor_1", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "decimal_interceptor_1", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_fs", "label": "fs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fs", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_path", "label": "path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "path", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "label": "app-audit-verification.e2e-spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "app-audit-verification.e2e-spec.ts", "community": 13, "community_name": "app-audit-verification.e2e-spec.js", "source_file": "backend/test/app-audit-verification.e2e-spec.ts", "file_type": "code", "degree": 8}, {"id": "backend_test_app_e2e_spec_d", "label": "app.e2e-spec.d.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "app.e2e-spec.d.ts", "community": 271, "community_name": "app.e2e-spec.d.ts", "source_file": "backend/test/app.e2e-spec.d.ts", "file_type": "code", "degree": 0}, {"id": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", "label": "app.e2e-spec.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "app.e2e-spec.js", "community": 85, "community_name": "app.e2e-spec.js", "source_file": "backend/test/app.e2e-spec.js", "file_type": "code", "degree": 4}, {"id": "backend_test_app_e2e_spec_testing_1", "label": "testing_1", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "testing_1", "community": 85, "community_name": "app.e2e-spec.js", "source_file": "backend/test/app.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_e2e_spec_supertest_1", "label": "supertest_1", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "supertest_1", "community": 85, "community_name": "app.e2e-spec.js", "source_file": "backend/test/app.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_e2e_spec_app_module_1", "label": "app_module_1", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "app_module_1", "community": 85, "community_name": "app.e2e-spec.js", "source_file": "backend/test/app.e2e-spec.js", "file_type": "code", "degree": 1}, {"id": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", "label": "app.e2e-spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "app.e2e-spec.ts", "community": 123, "community_name": "auth.service.ts", "source_file": "backend/test/app.e2e-spec.ts", "file_type": "code", "degree": 2}, {"id": "backend_tsconfig_build", "label": "tsconfig.build.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.build.json", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "code", "degree": 3}, {"id": "backend_tsconfig_build_extends", "label": "extends", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "extends", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "code", "degree": 1}, {"id": "ref_tsconfig_json", "label": "./tsconfig.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "./tsconfig.json", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig_build_exclude", "label": "exclude", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "code", "degree": 6}, {"id": "backend_tsconfig_build_json_ref_node_modules", "label": "node_modules", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node_modules", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "ref_test", "label": "test", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig_build_json_ref_dist", "label": "dist", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dist", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "ref_spec_ts", "label": "**/*spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*spec.ts", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig_build_json_ref_prisma", "label": "prisma", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 153, "community_name": "exclude", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig", "label": "backend/tsconfig.json", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "backend/tsconfig.json", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 3}, {"id": "backend_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 23}, {"id": "backend_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_resolvepackagejsonexports", "label": "resolvePackageJsonExports", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolvePackageJsonExports", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_declaration", "label": "declaration", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "declaration", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_removecomments", "label": "removeComments", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "removeComments", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_emitdecoratormetadata", "label": "emitDecoratorMetadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "emitDecoratorMetadata", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_experimentaldecorators", "label": "experimentalDecorators", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "experimentalDecorators", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", "label": "allowSyntheticDefaultImports", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowSyntheticDefaultImports", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_sourcemap", "label": "sourceMap", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceMap", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_outdir", "label": "outDir", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "outDir", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_rootdir", "label": "rootDir", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rootDir", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_baseurl", "label": "baseUrl", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "baseUrl", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_incremental", "label": "incremental", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "incremental", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_strictnullchecks", "label": "strictNullChecks", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strictNullChecks", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", "label": "forceConsistentCasingInFileNames", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "forceConsistentCasingInFileNames", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_noimplicitany", "label": "noImplicitAny", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noImplicitAny", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_strictbindcallapply", "label": "strictBindCallApply", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strictBindCallApply", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_include", "label": "include", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 2}, {"id": "backend_tsconfig_json_ref_src", "label": "src/**/*", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "src/**/*", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig_exclude", "label": "exclude", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 5}, {"id": "backend_tsconfig_json_ref_node_modules", "label": "node_modules", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node_modules", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig_json_ref_dist", "label": "dist", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dist", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_scripts", "label": "scripts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "backend_tsconfig_json_ref_prisma", "label": "prisma", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 59, "community_name": "compilerOptions", "source_file": "backend/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "docs_audit_build_manifest", "label": "build_manifest.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "build_manifest.js", "community": 212, "community_name": "build_manifest.js", "source_file": "docs/audit/build_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_build_manifest_lines", "label": "lines", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lines", "community": 212, "community_name": "build_manifest.js", "source_file": "docs/audit/build_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_build_manifest_entries", "label": "entries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "entries", "community": 212, "community_name": "build_manifest.js", "source_file": "docs/audit/build_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_classification", "label": "generate_classification.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_classification.js", "community": 213, "community_name": "generate_classification.js", "source_file": "docs/audit/generate_classification.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_classification_lines", "label": "lines", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lines", "community": 213, "community_name": "generate_classification.js", "source_file": "docs/audit/generate_classification.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_classification_classified", "label": "classified", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "classified", "community": 213, "community_name": "generate_classification.js", "source_file": "docs/audit/generate_classification.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_evidence", "label": "generate_evidence.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_evidence.js", "community": 214, "community_name": "generate_evidence.js", "source_file": "docs/audit/generate_evidence.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_evidence_classification", "label": "classification", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "classification", "community": 214, "community_name": "generate_evidence.js", "source_file": "docs/audit/generate_evidence.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_evidence_evidenceentries", "label": "evidenceEntries", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "evidenceEntries", "community": 214, "community_name": "generate_evidence.js", "source_file": "docs/audit/generate_evidence.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_ledger", "label": "generate_ledger.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_ledger.js", "community": 215, "community_name": "generate_ledger.js", "source_file": "docs/audit/generate_ledger.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_ledger_evidence", "label": "evidence", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "evidence", "community": 215, "community_name": "generate_ledger.js", "source_file": "docs/audit/generate_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_ledger_ledgerentries", "label": "ledgerEntries", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ledgerEntries", "community": 215, "community_name": "generate_ledger.js", "source_file": "docs/audit/generate_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_manifest", "label": "generate_manifest.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_manifest.js", "community": 216, "community_name": "generate_manifest.js", "source_file": "docs/audit/generate_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_manifest_evidence", "label": "evidence", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "evidence", "community": 216, "community_name": "generate_manifest.js", "source_file": "docs/audit/generate_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_manifest_manifestentries", "label": "manifestEntries", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "manifestEntries", "community": 216, "community_name": "generate_manifest.js", "source_file": "docs/audit/generate_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger", "label": "rebuild_honest_ledger.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "rebuild_honest_ledger.js", "community": 174, "community_name": "rebuild_honest_ledger.js", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 4}, {"id": "docs_audit_rebuild_honest_ledger_mandatoryscope", "label": "mandatoryScope", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mandatoryScope", "community": 174, "community_name": "rebuild_honest_ledger.js", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger_evidencelist", "label": "evidenceList", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "evidenceList", "community": 174, "community_name": "rebuild_honest_ledger.js", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger_mandatorymap", "label": "mandatoryMap", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mandatoryMap", "community": 174, "community_name": "rebuild_honest_ledger.js", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger_ledger", "label": "ledger", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ledger", "community": 174, "community_name": "rebuild_honest_ledger.js", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_honest_manifest", "label": "sync_honest_manifest.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_honest_manifest.js", "community": 217, "community_name": "sync_honest_manifest.js", "source_file": "docs/audit/sync_honest_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_sync_honest_manifest_ledger", "label": "ledger", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ledger", "community": 217, "community_name": "sync_honest_manifest.js", "source_file": "docs/audit/sync_honest_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_honest_manifest_manifest", "label": "manifest", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest", "community": 217, "community_name": "sync_honest_manifest.js", "source_file": "docs/audit/sync_honest_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_manifest", "label": "sync_manifest.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_manifest.js", "community": 218, "community_name": "sync_manifest.js", "source_file": "docs/audit/sync_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_sync_manifest_ledger", "label": "ledger", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ledger", "community": 218, "community_name": "sync_manifest.js", "source_file": "docs/audit/sync_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_manifest_manifestentries", "label": "manifestEntries", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "manifestEntries", "community": 218, "community_name": "sync_manifest.js", "source_file": "docs/audit/sync_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade", "label": "validate_evidence_grade.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_evidence_grade.js", "community": 175, "community_name": "validate_evidence_grade.js", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 4}, {"id": "docs_audit_validate_evidence_grade_errors", "label": "errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "errors", "community": 175, "community_name": "validate_evidence_grade.js", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade_warnings", "label": "warnings", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "warnings", "community": 175, "community_name": "validate_evidence_grade.js", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade_activefiles", "label": "activeFiles", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "activeFiles", "community": 175, "community_name": "validate_evidence_grade.js", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade_validationoutput", "label": "validationOutput", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "validationOutput", "community": 175, "community_name": "validate_evidence_grade.js", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity", "label": "validate_integrity.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_integrity.js", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 9}, {"id": "docs_audit_validate_integrity_manifest", "label": "manifest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_trackedfiles", "label": "trackedFiles", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "trackedFiles", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_verifiedindex", "label": "verifiedIndex", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verifiedIndex", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_errors", "label": "errors", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "errors", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_warnings", "label": "warnings", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "warnings", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_dispsum", "label": "dispSum", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dispSum", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_invalidnewids", "label": "invalidNewIds", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "invalidNewIds", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_uninspected", "label": "uninspected", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "uninspected", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_report", "label": "report", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "report", "community": 125, "community_name": "validate_integrity.js", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_eslint_config", "label": "eslint.config.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint.config.js", "community": 278, "community_name": "eslint.config.js", "source_file": "frontend/admin-panel/eslint.config.js", "file_type": "code", "degree": 0}, {"id": "frontend_admin_panel_package", "label": "admin-panel/package.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/package.json", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_package_name", "label": "name", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_private", "label": "private", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_version", "label": "version", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_type", "label": "type", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts", "label": "scripts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 5}, {"id": "frontend_admin_panel_package_scripts_dev", "label": "dev", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts_build", "label": "build", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts_lint", "label": "lint", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts_preview", "label": "preview", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "preview", "community": 126, "community_name": "admin-panel/package.json", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies", "label": "dependencies", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "dependencies", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_package_dependencies_tanstack_react_query", "label": "@tanstack/react-query", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-query", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "tanstack_react_query", "label": "@tanstack/react-query", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-query", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_axios", "label": "axios", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_axios", "label": "axios", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_lucide_react", "label": "lucide-react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_lucide_react", "label": "lucide-react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_react", "label": "react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_react", "label": "react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_react_dom", "label": "react-dom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_react_hot_toast", "label": "react-hot-toast", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-hot-toast", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "react_hot_toast", "label": "react-hot-toast", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-hot-toast", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_react_router_dom", "label": "react-router-dom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "react_router_dom", "label": "react-router-dom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_recharts", "label": "recharts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "recharts", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "recharts", "label": "recharts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "recharts", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_vite", "label": "vite", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "vite", "label": "vite", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_zustand", "label": "zustand", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_zustand", "label": "zustand", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 83, "community_name": "dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies", "label": "devDependencies", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_package_devdependencies_eslint_js", "label": "@eslint/js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_eslint_js", "label": "@eslint/js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 299, "community_name": "@tailwindcss/postcss", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 299, "community_name": "@tailwindcss/postcss", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_types_node", "label": "@types/node", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_types_react", "label": "@types/react", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_types_react_dom", "label": "@types/react-dom", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_autoprefixer", "label": "autoprefixer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "autoprefixer", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "autoprefixer", "label": "autoprefixer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "autoprefixer", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", "label": "eslint-plugin-react-hooks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-hooks", "community": 306, "community_name": "eslint-plugin-react-hooks", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_plugin_react_hooks", "label": "eslint-plugin-react-hooks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-hooks", "community": 306, "community_name": "eslint-plugin-react-hooks", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", "label": "eslint-plugin-react-refresh", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-refresh", "community": 327, "community_name": "eslint-plugin-react-refresh", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_plugin_react_refresh", "label": "eslint-plugin-react-refresh", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-refresh", "community": 327, "community_name": "eslint-plugin-react-refresh", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_globals", "label": "globals", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_globals", "label": "globals", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_postcss", "label": "postcss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "postcss", "label": "postcss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss", "community": 49, "community_name": "devDependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_tailwindcss", "label": "tailwindcss", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 223, "community_name": "tailwindcss", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_tailwindcss", "label": "tailwindcss", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 223, "community_name": "tailwindcss", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 300, "community_name": "typescript", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_typescript", "label": "typescript", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 300, "community_name": "typescript", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_devdependencies_typescript_eslint", "label": "typescript-eslint", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 302, "community_name": "typescript-eslint", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_typescript_eslint", "label": "typescript-eslint", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 302, "community_name": "typescript-eslint", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_postcss_config", "label": "postcss.config.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.js", "community": 279, "community_name": "postcss.config.js", "source_file": "frontend/admin-panel/postcss.config.js", "file_type": "code", "degree": 0}, {"id": "frontend_admin_panel_src_app", "label": "App.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "App.tsx", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/App.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_admin_panel_src_app_suspensefallback", "label": "SuspenseFallback()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SuspenseFallback()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/App.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_app_app", "label": "App()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "App()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/App.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_layout", "label": "Layout.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Layout.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_admin_panel_src_components_layout_layout", "label": "Layout()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Layout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_protectedroute", "label": "ProtectedRoute.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtectedRoute.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_components_protectedroute_protectedroute", "label": "ProtectedRoute()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtectedRoute()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_routeerrorboundary", "label": "RouteErrorBoundary.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteErrorBoundary.tsx", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_props", "label": "Props", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_state", "label": "State", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "State", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "label": "RouteErrorBoundary", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "RouteErrorBoundary", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror", "label": ".getDerivedStateFromError()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDerivedStateFromError()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch", "label": ".componentDidCatch()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".componentDidCatch()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload", "label": ".handleReload()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleReload()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome", "label": ".handleGoHome()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleGoHome()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render", "label": ".render()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".render()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_sidebar", "label": "Sidebar.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_components_sidebar_submenuitem", "label": "SubMenuItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SubMenuItem", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_sidebar_menugroup", "label": "MenuGroup", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuGroup", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_sidebar_sidebarprops", "label": "SidebarProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SidebarProps", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_sidebar_sidebar", "label": "Sidebar()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_topbar", "label": "Topbar.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Topbar.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_components_topbar_topbarprops", "label": "TopbarProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TopbarProps", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_topbar_searchable_pages", "label": "SEARCHABLE_PAGES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SEARCHABLE_PAGES", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_topbar_livemonitoringsummary", "label": "LiveMonitoringSummary", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LiveMonitoringSummary", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_topbar_topbar", "label": "Topbar()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Topbar()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_transactionreceiptmodal", "label": "TransactionReceiptModal.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TransactionReceiptModal.tsx", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", "label": "TransactionReceiptData", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TransactionReceiptData", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", "label": "TransactionReceiptModalProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TransactionReceiptModalProps", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", "label": "TransactionReceiptModal()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TransactionReceiptModal()", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_badge", "label": "Badge.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge.tsx", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_components_ui_badge_badgevariant", "label": "BadgeVariant", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BadgeVariant", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_badge_badgeprops", "label": "BadgeProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BadgeProps", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_badge_variantstyles", "label": "variantStyles", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "variantStyles", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_badge_badge", "label": "Badge()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Badge()", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_button", "label": "Button.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Button.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "file_type": "code", "degree": 45}, {"id": "frontend_admin_panel_src_components_ui_button_buttonvariant", "label": "ButtonVariant", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonVariant", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_button_buttonsize", "label": "ButtonSize", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonSize", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_button_buttonprops", "label": "ButtonProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ButtonProps", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_button_button", "label": "Button()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 21.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Button()", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "file_type": "code", "degree": 40}, {"id": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "ConfirmModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "ConfirmModal.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 20}, {"id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", "label": "ConfirmModalProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfirmModalProps", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "ConfirmModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ConfirmModal()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 19}, {"id": "frontend_admin_panel_src_components_ui_formfield", "label": "FormField.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField.tsx", "community": 219, "community_name": "FormField.tsx", "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_formfield_formfieldprops", "label": "FormFieldProps", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FormFieldProps", "community": 219, "community_name": "FormField.tsx", "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_formfield_formfield", "label": "FormField()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FormField()", "community": 219, "community_name": "FormField.tsx", "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_iconpickermodal", "label": "IconPickerModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "IconPickerModal.tsx", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodalprops", "label": "IconPickerModalProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IconPickerModalProps", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", "label": "ICON_REGISTRY", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ICON_REGISTRY", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", "label": "IconPickerModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IconPickerModal()", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "label": "ImagePreviewModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ImagePreviewModal.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", "label": "ImagePreviewModalProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ImagePreviewModalProps", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", "label": "ImagePreviewModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ImagePreviewModal()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_admin_panel_src_components_ui_input", "label": "Input.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Input.tsx", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_admin_panel_src_components_ui_input_inputprops", "label": "InputProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "InputProps", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_input_input", "label": "Input", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Input", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_maskablefield", "label": "MaskableField.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MaskableField.tsx", "community": 318, "community_name": "MaskableField.tsx", "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", "label": "MaskableFieldProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MaskableFieldProps", "community": 318, "community_name": "MaskableField.tsx", "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", "label": "MaskableField()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MaskableField()", "community": 318, "community_name": "MaskableField.tsx", "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_mediaselector", "label": "MediaSelector.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "MediaSelector.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 26}, {"id": "frontend_admin_panel_src_components_ui_mediaselector_media", "label": "Media", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Media", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", "label": "MediaSelectorProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaSelectorProps", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", "label": "getFileType()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileType()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "MediaSelector()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaSelector()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_admin_panel_src_components_ui_modal", "label": "Modal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Modal.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", "file_type": "code", "degree": 27}, {"id": "frontend_admin_panel_src_components_ui_modal_modalprops", "label": "ModalProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ModalProps", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses", "label": "maxWidthClasses", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "maxWidthClasses", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_modal_modal", "label": "Modal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Modal()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", "file_type": "code", "degree": 25}, {"id": "frontend_admin_panel_src_components_ui_pagination", "label": "Pagination.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Pagination.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_components_ui_pagination_paginationprops", "label": "PaginationProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationProps", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "Pagination()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pagination()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_admin_panel_src_components_ui_priceinput", "label": "PriceInput.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceInput.tsx", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", "label": "PriceInputProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceInputProps", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", "label": "toEnglishDigits()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "toEnglishDigits()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", "label": "formatPriceWithCommas()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "formatPriceWithCommas()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "label": "PriceInput()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PriceInput()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_components_ui_richtexteditor", "label": "RichTextEditor.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "RichTextEditor.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditorprops", "label": "RichTextEditorProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RichTextEditorProps", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_richtexteditor_preset_colors", "label": "PRESET_COLORS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRESET_COLORS", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_richtexteditor_preset_bg_colors", "label": "PRESET_BG_COLORS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRESET_BG_COLORS", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_richtexteditor_activestates", "label": "ActiveStates", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ActiveStates", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", "label": "RichTextEditor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "RichTextEditor()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_select", "label": "Select.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Select.tsx", "community": 196, "community_name": "Select.tsx", "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_ui_select_selectoption", "label": "SelectOption", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectOption", "community": 196, "community_name": "Select.tsx", "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_select_selectprops", "label": "SelectProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SelectProps", "community": 196, "community_name": "Select.tsx", "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_select_select", "label": "Select", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Select", "community": 196, "community_name": "Select.tsx", "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_skeleton", "label": "ui/Skeleton.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ui/Skeleton.tsx", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "label": "Skeleton()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton()", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_spinner", "label": "Spinner.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Spinner.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", "file_type": "code", "degree": 34}, {"id": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "Spinner()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 19.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Spinner()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", "file_type": "code", "degree": 34}, {"id": "frontend_admin_panel_src_components_ui_textarea", "label": "Textarea.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Textarea.tsx", "community": 221, "community_name": "Textarea.tsx", "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_textarea_textareaprops", "label": "TextareaProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TextareaProps", "community": 221, "community_name": "Textarea.tsx", "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_textarea_textarea", "label": "Textarea", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Textarea", "community": 221, "community_name": "Textarea.tsx", "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_thsort", "label": "ThSort.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ThSort.tsx", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_ui_thsort_thsortprops", "label": "ThSortProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ThSortProps", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_thsort_thsort", "label": "ThSort()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ThSort()", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_toggleswitch", "label": "ToggleSwitch.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ToggleSwitch.tsx", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", "label": "ToggleSwitchProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ToggleSwitchProps", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", "label": "ToggleSwitch()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ToggleSwitch()", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_main", "label": "main.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main.tsx", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/main.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_apikeyspage", "label": "ApiKeysPage.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeysPage.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/ApiKeysPage.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_admin_panel_src_pages_apikeyspage_apikeyspage", "label": "ApiKeysPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeysPage()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/ApiKeysPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_b2bmanager", "label": "B2BManager.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BManager.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", "label": "B2BManager()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BManager()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_bannersmanager", "label": "BannersManager.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "BannersManager.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", "label": "BannersManager()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersManager()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs", "label": "Blogs.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Blogs.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 25}, {"id": "frontend_admin_panel_src_pages_blogs_blogcategory", "label": "BlogCategory", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogCategory", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_blogtag", "label": "BlogTag", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogTag", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_authoruser", "label": "AuthorUser", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthorUser", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_productsimple", "label": "ProductSimple", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductSimple", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_blogpost", "label": "BlogPost", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPost", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_blogs", "label": "Blogs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Blogs()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_cms", "label": "CMS.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CMS.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_cms_herobanner", "label": "HeroBanner", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HeroBanner", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_cms_vettestimonial", "label": "VetTestimonial", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VetTestimonial", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_cms_cms", "label": "CMS()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CMS()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_categories", "label": "Categories.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Categories.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "file_type": "code", "degree": 19}, {"id": "frontend_admin_panel_src_pages_categories_category", "label": "Category", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_categories_categories", "label": "Categories()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Categories()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_contactsubmissions", "label": "ContactSubmissions.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmissions.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", "label": "ContactSubmission", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmission", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", "label": "ContactInfoItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactInfoItem", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", "label": "ContactSubmissions()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmissions()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons", "label": "Coupons.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Coupons.tsx", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 24}, {"id": "frontend_admin_panel_src_pages_coupons_coupontarget", "label": "CouponTarget", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponTarget", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_coupon", "label": "Coupon", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Coupon", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_couponformdata", "label": "CouponFormData", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponFormData", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_coupons", "label": "Coupons()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Coupons()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", "label": "CouponModalProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponModalProps", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_couponmodal", "label": "CouponModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponModal()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_dashboard", "label": "Dashboard.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard.tsx", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_pages_dashboard_categorydist", "label": "CategoryDist", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryDist", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_dashboard_dashboarddata", "label": "DashboardData", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardData", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_dashboard_dashboard", "label": "Dashboard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_doctorsmanager", "label": "DoctorsManager.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "DoctorsManager.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_src_pages_doctorsmanager_doctor", "label": "Doctor", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Doctor", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", "label": "DoctorsManager()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorsManager()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_faqmanager", "label": "FAQManager.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQManager.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_pages_faqmanager_faq", "label": "FAQ", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQ", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_faqmanager_faqmanager", "label": "FAQManager()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQManager()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_financialsettingspage", "label": "FinancialSettingsPage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "FinancialSettingsPage.tsx", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", "label": "FinancialSettingsPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettingsPage()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_ingredientsmanager", "label": "IngredientsManager.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "IngredientsManager.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", "label": "IngredientsManager()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsManager()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_login", "label": "Login.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Login.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/Login.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_pages_login_login", "label": "Login()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Login()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/Login.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_media", "label": "Media.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Media.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 20}, {"id": "frontend_admin_panel_src_pages_media_media", "label": "Media", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Media", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_media_getfiletype", "label": "getFileType()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getFileType()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_media_mediamanager", "label": "MediaManager()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaManager()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_menumanager", "label": "MenuManager.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuManager.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_src_pages_menumanager_menuitem", "label": "MenuItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuItem", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_menumanager_menutype", "label": "MenuType", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuType", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_menumanager_menu_tabs", "label": "MENU_TABS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MENU_TABS", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_menumanager_menumanager", "label": "MenuManager()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuManager()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_monitoringpage", "label": "MonitoringPage.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MonitoringPage.tsx", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_admin_panel_src_pages_monitoringpage_monitoringstats", "label": "MonitoringStats", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MonitoringStats", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_monitoringpage_monitoringpage", "label": "MonitoringPage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MonitoringPage()", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders", "label": "Orders.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "Orders.tsx", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 23}, {"id": "frontend_admin_panel_src_pages_orders_orderitem", "label": "OrderItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderItem", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_paymenttx", "label": "PaymentTx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentTx", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_order", "label": "Order", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_order_status_map", "label": "ORDER_STATUS_MAP", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ORDER_STATUS_MAP", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", "label": "getPaymentStatusBadge()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getPaymentStatusBadge()", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", "label": "getShippingMethodLabel()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getShippingMethodLabel()", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", "label": "getPaymentMethodLabel()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getPaymentMethodLabel()", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_orders_topersiandigits", "label": "toPersianDigits()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toPersianDigits()", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_orders_orders", "label": "Orders()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Orders()", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_paymentgatewayspage", "label": "PaymentGatewaysPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentGatewaysPage.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_pages_paymentgatewayspage_paymentgatewayspage", "label": "PaymentGatewaysPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentGatewaysPage()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_pets", "label": "Pets.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Pets.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Pets.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_src_pages_pets_pet", "label": "Pet", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pet", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Pets.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_pets_pets", "label": "Pets()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pets()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Pets.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_prescriptionsmanager", "label": "PrescriptionsManager.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "PrescriptionsManager.tsx", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", "file_type": "code", "degree": 19}, {"id": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", "label": "ProductItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductItem", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", "label": "PrescriptionsManager()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsManager()", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_products", "label": "Products.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Products.tsx", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 30}, {"id": "frontend_admin_panel_src_pages_products_category", "label": "Category", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_products_product", "label": "Product", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Product", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_products_products", "label": "Products()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Products()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_reports", "label": "Reports.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Reports.tsx", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_src_pages_reports_colors", "label": "COLORS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "COLORS", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_customtooltipprops", "label": "CustomTooltipProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTooltipProps", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_customtooltip", "label": "CustomTooltip()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTooltip()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_categorydistitem", "label": "CategoryDistItem", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryDistItem", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_bestselleritem", "label": "BestSellerItem", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BestSellerItem", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_topcouponitem", "label": "TopCouponItem", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TopCouponItem", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_reportdata", "label": "ReportData", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ReportData", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_reports", "label": "Reports()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Reports()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reviews", "label": "Reviews.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Reviews.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_pages_reviews_productreview", "label": "ProductReview", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductReview", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reviews_blogcommentitem", "label": "BlogCommentItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogCommentItem", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reviews_topersiandigits", "label": "toPersianDigits()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toPersianDigits()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_reviews_reviews", "label": "Reviews()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Reviews()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_seosettingspage", "label": "SeoSettingsPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettingsPage.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", "label": "SeoSettingsPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettingsPage()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_settings", "label": "Settings.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/Settings.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_pages_settings_settings", "label": "Settings()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_shippingsettingspage", "label": "ShippingSettingsPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ShippingSettingsPage.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", "label": "ShippingSettingsPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShippingSettingsPage()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smartadvisormanager", "label": "SmartAdvisorManager.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorManager.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", "label": "SmartAdvisorManager()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorManager()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage", "label": "SmsSettingsPage.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "SmsSettingsPage.tsx", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 19}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smsrule", "label": "SmsRule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsRule", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smseventvariable", "label": "SmsEventVariable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsEventVariable", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smseventdefinition", "label": "SmsEventDefinition", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsEventDefinition", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", "label": "SmsConfigState", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsConfigState", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_patternitem", "label": "PatternItem", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PatternItem", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", "label": "SmsLogItem", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsLogItem", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", "label": "SmsLogStats", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsLogStats", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", "label": "toPersianDigits()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "toPersianDigits()", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", "label": "SmsSettingsPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsSettingsPage()", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_sslsettingspage", "label": "SslSettingsPage.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SslSettingsPage.tsx", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", "label": "SslStatus", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SslStatus", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", "label": "SslSettingsPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SslSettingsPage()", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_systemsettingspage", "label": "SystemSettingsPage.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettingsPage.tsx", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", "label": "SystemSettingsPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettingsPage()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_testimonialsmanager", "label": "TestimonialsManager.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "TestimonialsManager.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", "label": "TestimonialsManager()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsManager()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_tickets", "label": "Tickets.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Tickets.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_tickets_ticketmessage", "label": "TicketMessage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketMessage", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_tickets_ticket", "label": "Ticket", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Ticket", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_tickets_tickets", "label": "Tickets()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Tickets()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_transactions", "label": "Transactions.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Transactions.tsx", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", "file_type": "code", "degree": 25}, {"id": "frontend_admin_panel_src_pages_transactions_transaction", "label": "Transaction", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Transaction", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_transactions_stats", "label": "Stats", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stats", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", "label": "GatewayHealth", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GatewayHealth", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_transactions_transactions", "label": "Transactions()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Transactions()", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_uitexts", "label": "UITexts.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "UITexts.tsx", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 28}, {"id": "frontend_admin_panel_src_pages_uitexts_sectionfield", "label": "SectionField", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SectionField", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_pagesection", "label": "PageSection", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PageSection", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_appsitepage", "label": "AppSitePage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AppSitePage", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_createseosection", "label": "createSeoSection()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "createSeoSection()", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_site_pages", "label": "SITE_PAGES", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SITE_PAGES", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_shared_header_fields", "label": "SHARED_HEADER_FIELDS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SHARED_HEADER_FIELDS", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields", "label": "SHARED_FOOTER_FIELDS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SHARED_FOOTER_FIELDS", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_uitexts", "label": "UITexts()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UITexts()", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_users", "label": "Users.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Users.tsx", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/Users.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_src_pages_users_userrecord", "label": "UserRecord", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UserRecord", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/Users.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_users_users", "label": "Users()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Users()", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/pages/Users.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_videos", "label": "Videos.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Videos.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_admin_panel_src_pages_videos_video", "label": "Video", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Video", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_videos_doctoroption", "label": "DoctorOption", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorOption", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_videos_videos", "label": "Videos()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wholesaleapplications", "label": "WholesaleApplications.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplications.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", "label": "WholesaleRequest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleRequest", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", "label": "WholesaleApplications()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplications()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wiki", "label": "Wiki.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Wiki.tsx", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_src_pages_wiki_wikiterm", "label": "WikiTerm", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiTerm", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wiki_productitem", "label": "ProductItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductItem", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wiki_wiki", "label": "Wiki()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Wiki()", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_zibalportalpage", "label": "ZibalPortalPage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalPortalPage.tsx", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", "label": "ZibalPortalPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalPortalPage()", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_routes_adminroutes", "label": "adminRoutes.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 35.3, "font": {"size": 12, "color": "#ffffff"}, "title": "adminRoutes.tsx", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 91}, {"id": "frontend_admin_panel_src_routes_adminroutes_dashboard", "label": "Dashboard", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_users", "label": "Users", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Users", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_products", "label": "Products", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Products", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_orders", "label": "Orders", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Orders", "community": 58, "community_name": "Orders.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_coupons", "label": "Coupons", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Coupons", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_settings", "label": "Settings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_reports", "label": "Reports", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Reports", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_categories", "label": "Categories", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Categories", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_blogs", "label": "Blogs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Blogs", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_wiki", "label": "Wiki", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Wiki", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_pets", "label": "Pets", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Pets", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_uitexts", "label": "UITexts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "UITexts", "community": 55, "community_name": "UITexts.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_media", "label": "Media", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Media", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_cms", "label": "CMS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CMS", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", "label": "WholesaleApplications", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplications", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_videos", "label": "Videos", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", "label": "ContactSubmissions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmissions", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", "label": "BannersManager", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersManager", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", "label": "SmartAdvisorManager", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorManager", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", "label": "TestimonialsManager", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsManager", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", "label": "IngredientsManager", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsManager", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", "label": "PrescriptionsManager", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsManager", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", "label": "B2BManager", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BManager", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", "label": "SeoSettingsPage", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettingsPage", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", "label": "FinancialSettingsPage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettingsPage", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage", "label": "PaymentGatewaysPage", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentGatewaysPage", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", "label": "ZibalPortalPage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ZibalPortalPage", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", "label": "ShippingSettingsPage", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ShippingSettingsPage", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", "label": "SystemSettingsPage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettingsPage", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", "label": "SmsSettingsPage", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsSettingsPage", "community": 7, "community_name": "SmsSettingsPage.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", "label": "SslSettingsPage", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SslSettingsPage", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_apikeyspage", "label": "ApiKeysPage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeysPage", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_transactions", "label": "Transactions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Transactions", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_tickets", "label": "Tickets", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Tickets", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_reviews", "label": "Reviews", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Reviews", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", "label": "DoctorsManager", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DoctorsManager", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_faqmanager", "label": "FAQManager", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQManager", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_menumanager", "label": "MenuManager", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MenuManager", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_monitoringpage", "label": "MonitoringPage", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MonitoringPage", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", "label": "AdminRouteConfig", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminRouteConfig", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_routes_adminroutes_router", "label": "router", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "router", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_services_api", "label": "src/services/api.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "src/services/api.ts", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 54}, {"id": "frontend_admin_panel_src_services_api_base_domain", "label": "BASE_DOMAIN", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BASE_DOMAIN", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_services_api_apierrorpayload", "label": "ApiErrorPayload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErrorPayload", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_services_api_api", "label": "api", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "api", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 45}, {"id": "frontend_admin_panel_src_services_api_failedqueue", "label": "failedQueue", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "failedQueue", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_services_api_processqueue", "label": "processQueue()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "processQueue()", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_store_adminauthstore", "label": "adminAuthStore.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "adminAuthStore.ts", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "useAdminAuthStore", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useAdminAuthStore", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_types_admin", "label": "admin.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.8, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.ts", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 39}, {"id": "frontend_admin_panel_src_types_admin_adminuser", "label": "AdminUser", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminUser", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_authstate", "label": "AuthState", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthState", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_sendotppayload", "label": "SendOtpPayload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SendOtpPayload", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_verifyotppayload", "label": "VerifyOtpPayload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyOtpPayload", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_adminloginpayload", "label": "AdminLoginPayload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLoginPayload", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_authresponsedata", "label": "AuthResponseData", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponseData", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_types_admin_apiresponse", "label": "ApiResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiResponse", "community": 2, "community_name": "ApiResponse", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_types_admin_useraddress", "label": "UserAddress", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UserAddress", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_petsummary", "label": "PetSummary", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PetSummary", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_banner", "label": "Banner", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Banner", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_smartadvisorrule", "label": "SmartAdvisorRule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorRule", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_testimonial", "label": "Testimonial", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Testimonial", "community": 115, "community_name": "MediaSelector.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_ingredient", "label": "Ingredient", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ingredient", "community": 54, "community_name": "Modal.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_prescription", "label": "Prescription", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Prescription", "community": 56, "community_name": "PrescriptionsManager.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_b2binquiry", "label": "B2BInquiry", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BInquiry", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_partneraccount", "label": "PartnerAccount", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PartnerAccount", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_seosettings", "label": "SeoSettings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettings", "community": 48, "community_name": "Button.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_financialsettings", "label": "FinancialSettings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettings", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_systemsettings", "label": "SystemSettings", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettings", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_product", "label": "Product", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Product", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_pricingsettings", "label": "PricingSettings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PricingSettings", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_apikeyitem", "label": "ApiKeyItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiKeyItem", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_createapikeypayload", "label": "CreateApiKeyPayload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateApiKeyPayload", "community": 15, "community_name": "src/services/api.ts", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_utils_lazywithretry", "label": "lazyWithRetry.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lazyWithRetry.ts", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", "label": "lazyWithRetry()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lazyWithRetry()", "community": 32, "community_name": "adminRoutes.tsx", "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_utils_pricing", "label": "pricing.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "pricing.ts", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/utils/pricing.ts", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_utils_pricing_roundingmode", "label": "RoundingMode", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "RoundingMode", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/utils/pricing.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_utils_pricing_pricingsettings", "label": "PricingSettings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PricingSettings", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/utils/pricing.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_utils_pricing_default_pricing_settings", "label": "DEFAULT_PRICING_SETTINGS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_PRICING_SETTINGS", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/utils/pricing.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_utils_pricing_applyrounding", "label": "applyRounding()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "applyRounding()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/utils/pricing.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "label": "calculateSellingPrice()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "calculateSellingPrice()", "community": 104, "community_name": "Products.tsx", "source_file": "frontend/admin-panel/src/utils/pricing.ts", "file_type": "code", "degree": 6}, {"id": "frontend_admin_panel_src_utils_usetableparams", "label": "useTableParams.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "useTableParams.ts", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_utils_usetableparams_usetableparamsoptions", "label": "UseTableParamsOptions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseTableParamsOptions", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_utils_usetableparams_usetableparams", "label": "useTableParams()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "useTableParams()", "community": 38, "community_name": "Button", "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_tailwind_config", "label": "tailwind.config.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwind.config.js", "community": 282, "community_name": "tailwind.config.js", "source_file": "frontend/admin-panel/tailwind.config.js", "file_type": "code", "degree": 0}, {"id": "tailwindcss_tailwindcss", "label": "tailwindcss", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 310, "community_name": "tailwindcss", "source_file": "tailwindcss", "file_type": "code", "degree": 0}, {"id": "frontend_admin_panel_tsconfig_app", "label": "tsconfig.app.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.app.json", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions", "label": "compilerOptions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", "label": "tsBuildInfoFile", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tsBuildInfoFile", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_target", "label": "target", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_lib", "label": "lib", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_tsconfig_app_json_ref_es2023", "label": "ES2023", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ES2023", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_json_ref_dom", "label": "DOM", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOM", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable", "label": "DOM.Iterable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOM.Iterable", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_module", "label": "module", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_types", "label": "types", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 2}, {"id": "ref_vite_client", "label": "vite/client", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vite/client", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", "label": "allowImportingTsExtensions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowImportingTsExtensions", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", "label": "verbatimModuleSyntax", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verbatimModuleSyntax", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", "label": "moduleDetection", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", "label": "noEmit", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", "label": "jsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", "label": "noUnusedLocals", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", "label": "noUnusedParameters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", "label": "erasableSyntaxOnly", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "erasableSyntaxOnly", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_include", "label": "include", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_app_json_ref_src", "label": "src", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "src", "community": 70, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig", "label": "admin-panel/tsconfig.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/tsconfig.json", "community": 222, "community_name": "admin-panel/tsconfig.json", "source_file": "frontend/admin-panel/tsconfig.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_files", "label": "files", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "files", "community": 222, "community_name": "admin-panel/tsconfig.json", "source_file": "frontend/admin-panel/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_references", "label": "references", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "references", "community": 222, "community_name": "admin-panel/tsconfig.json", "source_file": "frontend/admin-panel/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node", "label": "tsconfig.node.json", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.node.json", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions", "label": "compilerOptions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", "label": "tsBuildInfoFile", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tsBuildInfoFile", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_target", "label": "target", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_lib", "label": "lib", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_node_json_ref_es2023", "label": "ES2023", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ES2023", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_module", "label": "module", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_types", "label": "types", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_node_json_ref_node", "label": "node", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", "label": "allowImportingTsExtensions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowImportingTsExtensions", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", "label": "verbatimModuleSyntax", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verbatimModuleSyntax", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", "label": "moduleDetection", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", "label": "noEmit", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", "label": "noUnusedLocals", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", "label": "noUnusedParameters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", "label": "erasableSyntaxOnly", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "erasableSyntaxOnly", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_include", "label": "include", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "ref_vite_config_ts", "label": "vite.config.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 64, "community_name": "compilerOptions", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_vite_config", "label": "vite.config.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 283, "community_name": "vite.config.ts", "source_file": "frontend/admin-panel/vite.config.ts", "file_type": "code", "degree": 0}, {"id": "frontend_application_app_clientlayout", "label": "ClientLayout.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "ClientLayout.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 33}, {"id": "frontend_application_app_clientlayout_cartdrawer", "label": "CartDrawer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CartDrawer", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_clientlayout_loginmodal", "label": "LoginModal", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginModal", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_clientlayout_authmodal", "label": "AuthModal", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModal", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_clientlayout_b2bportal", "label": "B2BPortal", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BPortal", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_clientlayout_mobilebottomnav", "label": "MobileBottomNav", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileBottomNav", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_clientlayout_prescriptionuploadmodal", "label": "PrescriptionUploadModal", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModal", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_clientlayout_clientlayout", "label": "ClientLayout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ClientLayout()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_homeclient", "label": "HomeClient.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "HomeClient.tsx", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/app/HomeClient.tsx", "file_type": "code", "degree": 30}, {"id": "frontend_application_app_homeclient_homeclientprops", "label": "HomeClientProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeClientProps", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/app/HomeClient.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_homeclient_homeclient", "label": "HomeClient()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeClient()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/app/HomeClient.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_about_page", "label": "about/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "about/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/about/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_about_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/about/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_about_page_aboutpage", "label": "AboutPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AboutPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/about/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_api_media_path_route", "label": "media/[...path]/route.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "media/[...path]/route.ts", "community": 158, "community_name": "media/[...path]/route.ts", "source_file": "frontend/application/app/api/media/[...path]/route.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_api_media_path_route_dynamic", "label": "dynamic", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 158, "community_name": "media/[...path]/route.ts", "source_file": "frontend/application/app/api/media/[...path]/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_api_media_path_route_getcandidateurls", "label": "getCandidateUrls()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getCandidateUrls()", "community": 158, "community_name": "media/[...path]/route.ts", "source_file": "frontend/application/app/api/media/[...path]/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_api_media_path_route_getmimetype", "label": "getMimeType()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getMimeType()", "community": 158, "community_name": "media/[...path]/route.ts", "source_file": "frontend/application/app/api/media/[...path]/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_media_path_route_get", "label": "GET()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 158, "community_name": "media/[...path]/route.ts", "source_file": "frontend/application/app/api/media/[...path]/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_api_media_path_route_head", "label": "HEAD()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HEAD()", "community": 158, "community_name": "media/[...path]/route.ts", "source_file": "frontend/application/app/api/media/[...path]/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_revalidate_route", "label": "revalidate/route.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate/route.ts", "community": 317, "community_name": "revalidate/route.ts", "source_file": "frontend/application/app/api/revalidate/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_api_revalidate_route_get", "label": "GET()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 317, "community_name": "revalidate/route.ts", "source_file": "frontend/application/app/api/revalidate/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_revalidate_route_post", "label": "POST()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "POST()", "community": 317, "community_name": "revalidate/route.ts", "source_file": "frontend/application/app/api/revalidate/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_revalidate_route_handlerevalidate", "label": "handleRevalidate()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "handleRevalidate()", "community": 317, "community_name": "revalidate/route.ts", "source_file": "frontend/application/app/api/revalidate/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_api_torob_products_route", "label": "products/route.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "products/route.ts", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/app/api/torob/products/route.ts", "file_type": "code", "degree": 11}, {"id": "frontend_application_app_api_torob_products_route_dynamic", "label": "dynamic", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/app/api/torob/products/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_api_torob_products_route_revalidate", "label": "revalidate", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/app/api/torob/products/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_api_torob_products_route_buildtorobproducttitle", "label": "buildTorobProductTitle()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildTorobProductTitle()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/app/api/torob/products/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_torob_products_route_buildtorobproductspec", "label": "buildTorobProductSpec()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "buildTorobProductSpec()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/app/api/torob/products/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_torob_products_route_get", "label": "GET()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/app/api/torob/products/route.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_api_uploads_path_route", "label": "uploads/[...path]/route.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "uploads/[...path]/route.ts", "community": 176, "community_name": "uploads/[...path]/route.ts", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_api_uploads_path_route_dynamic", "label": "dynamic", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 176, "community_name": "uploads/[...path]/route.ts", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_api_uploads_path_route_getcandidateurls", "label": "getCandidateUrls()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getCandidateUrls()", "community": 176, "community_name": "uploads/[...path]/route.ts", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_api_uploads_path_route_getmimetype", "label": "getMimeType()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getMimeType()", "community": 176, "community_name": "uploads/[...path]/route.ts", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_api_uploads_path_route_get", "label": "GET()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 176, "community_name": "uploads/[...path]/route.ts", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_api_uploads_path_route_head", "label": "HEAD()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HEAD()", "community": 176, "community_name": "uploads/[...path]/route.ts", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_b2b_error", "label": "b2b/error.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b/error.tsx", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/b2b/error.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_b2b_error_b2berrorboundary", "label": "B2BErrorBoundary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BErrorBoundary()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/b2b/error.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_b2b_page", "label": "b2b/page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b/page.tsx", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/b2b/page.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_app_b2b_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/b2b/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_b2b_page_b2bpage", "label": "B2BPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BPage()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/b2b/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_slug_page", "label": "blog/[slug]/page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "blog/[slug]/page.tsx", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_app_blog_slug_page_safeiso", "label": "safeIso()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "safeIso()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_slug_page_safelocaldate", "label": "safeLocalDate()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "safeLocalDate()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_slug_page_getblog", "label": "getBlog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlog()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_slug_page_revalidate", "label": "revalidate", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_blog_slug_page_blogpostpage", "label": "BlogPostPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPostPage()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_blog_error", "label": "blog/error.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "blog/error.tsx", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/blog/error.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_error_blogerrorboundary", "label": "BlogErrorBoundary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogErrorBoundary()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/blog/error.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_loading", "label": "blog/loading.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "blog/loading.tsx", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/app/blog/loading.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_loading_blogloading", "label": "BlogLoading()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogLoading()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/app/blog/loading.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_page", "label": "blog/page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "blog/page.tsx", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_app_blog_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_page_revalidate", "label": "revalidate", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_page_getcategories", "label": "getCategories()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getCategories()", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_page_getblogs", "label": "getBlogs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlogs()", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_page_blog", "label": "Blog()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Blog()", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_rss_xml_route", "label": "rss.xml/route.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "rss.xml/route.ts", "community": 78, "community_name": "rss.xml/route.ts", "source_file": "frontend/application/app/blog/rss.xml/route.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_blog_rss_xml_route_dynamic", "label": "dynamic", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 78, "community_name": "rss.xml/route.ts", "source_file": "frontend/application/app/blog/rss.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_rss_xml_route_get", "label": "GET()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 78, "community_name": "rss.xml/route.ts", "source_file": "frontend/application/app/blog/rss.xml/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_rss_xml_route_escapexml", "label": "escapeXml()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "escapeXml()", "community": 78, "community_name": "rss.xml/route.ts", "source_file": "frontend/application/app/blog/rss.xml/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_catalog_catalogclient", "label": "CatalogClient.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogClient.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_app_catalog_catalogclient_catalogclient", "label": "CatalogClient()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogClient()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_catalog_page", "label": "catalog/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "catalog/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/catalog/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_catalog_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/catalog/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_catalog_page_catalogpage", "label": "CatalogPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/catalog/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_checkout_page", "label": "checkout/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "checkout/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/checkout/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_checkout_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/checkout/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_checkout_page_checkout", "label": "Checkout()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkout()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/checkout/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_checkout_success_id_page", "label": "[id]/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "[id]/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_checkout_success_id_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_checkout_success_id_page_successpage", "label": "SuccessPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SuccessPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_contact_page", "label": "contact/page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "contact/page.tsx", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/contact/page.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_app_contact_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/contact/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_contact_page_contactpage", "label": "ContactPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactPage()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/contact/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_dashboard_orders_page", "label": "orders/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "orders/page.tsx", "community": 321, "community_name": "orders/page.tsx", "source_file": "frontend/application/app/dashboard/orders/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_dashboard_orders_page_dashboardorderspage", "label": "DashboardOrdersPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardOrdersPage()", "community": 321, "community_name": "orders/page.tsx", "source_file": "frontend/application/app/dashboard/orders/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_dashboard_page", "label": "dashboard/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboard/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/dashboard/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_dashboard_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/dashboard/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_dashboard_page_dashboardpage", "label": "DashboardPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_dashboard_pets_page", "label": "pets/page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "pets/page.tsx", "community": 322, "community_name": "pets/page.tsx", "source_file": "frontend/application/app/dashboard/pets/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_dashboard_pets_page_dashboardpetspage", "label": "DashboardPetsPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardPetsPage()", "community": 322, "community_name": "pets/page.tsx", "source_file": "frontend/application/app/dashboard/pets/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_error", "label": "app/error.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "app/error.tsx", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/error.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_error_errorboundary", "label": "ErrorBoundary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/error.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_layout", "label": "layout.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/app/layout.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_application_app_layout_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/app/layout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_layout_rootlayout", "label": "RootLayout()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "RootLayout()", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/app/layout.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_loading", "label": "app/loading.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "app/loading.tsx", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/app/loading.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_loading_globalloading", "label": "GlobalLoading()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GlobalLoading()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/app/loading.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_not_found", "label": "not-found.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "not-found.tsx", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/not-found.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_not_found_notfound", "label": "NotFound()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFound()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/not-found.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_page", "label": "app/page.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "app/page.tsx", "community": 198, "community_name": "app/page.tsx", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_app_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 198, "community_name": "app/page.tsx", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_page_gethomedata", "label": "getHomeData()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getHomeData()", "community": 198, "community_name": "app/page.tsx", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_page_home", "label": "Home()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Home()", "community": 198, "community_name": "app/page.tsx", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_payment_verify_page", "label": "verify/page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "verify/page.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/app/payment/verify/page.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_app_payment_verify_page_verifycontent", "label": "VerifyContent()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyContent()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/app/payment/verify/page.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_payment_verify_page_paymentverifypage", "label": "PaymentVerifyPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PaymentVerifyPage()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/app/payment/verify/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_privacy_page", "label": "privacy/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "privacy/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/privacy/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_privacy_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/privacy/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_privacy_page_privacypage", "label": "PrivacyPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrivacyPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/privacy/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_profile_page", "label": "profile/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "profile/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/profile/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_profile_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/profile/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_profile_page_profilepage", "label": "ProfilePage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/profile/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_robots", "label": "robots.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "robots.ts", "community": 253, "community_name": "robots.ts", "source_file": "frontend/application/app/robots.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_robots_robots", "label": "robots()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "robots()", "community": 253, "community_name": "robots.ts", "source_file": "frontend/application/app/robots.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_search_page", "label": "search/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "search/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/search/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_search_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/search/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_search_page_searchpage", "label": "SearchPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/search/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_slug_page", "label": "shop/[slug]/page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "shop/[slug]/page.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_app_shop_slug_page_revalidate", "label": "revalidate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_shop_slug_page_shopproductpage", "label": "ShopProductPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShopProductPage()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_error", "label": "shop/error.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "shop/error.tsx", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/shop/error.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_shop_error_shoperrorboundary", "label": "ShopErrorBoundary()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShopErrorBoundary()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/app/shop/error.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_feed_xml_route", "label": "feed.xml/route.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "feed.xml/route.ts", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/feed.xml/route.ts", "file_type": "code", "degree": 9}, {"id": "frontend_application_app_shop_feed_xml_route_dynamic", "label": "dynamic", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/feed.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_feed_xml_route_revalidate", "label": "revalidate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/feed.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_feed_xml_route_get", "label": "GET()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/shop/feed.xml/route.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_shop_loading", "label": "shop/loading.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "shop/loading.tsx", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/app/shop/loading.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_shop_loading_shoploading", "label": "ShopLoading()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ShopLoading()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/app/shop/loading.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_page", "label": "shop/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "shop/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/shop/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_shop_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/shop/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_shop_page_shop", "label": "Shop()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Shop()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/shop/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_categories_xml_route", "label": "sitemap-categories.xml/route.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap-categories.xml/route.ts", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_sitemap_categories_xml_route_dynamic", "label": "dynamic", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_categories_xml_route_revalidate", "label": "revalidate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_categories_xml_route_default_categories", "label": "DEFAULT_CATEGORIES", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_CATEGORIES", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_categories_xml_route_get", "label": "GET()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_products_xml_route", "label": "sitemap-products.xml/route.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap-products.xml/route.ts", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "file_type": "code", "degree": 7}, {"id": "frontend_application_app_sitemap_products_xml_route_dynamic", "label": "dynamic", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dynamic", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_products_xml_route_revalidate", "label": "revalidate", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_products_xml_route_get", "label": "GET()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GET()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap", "label": "sitemap.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap.ts", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_sitemap_sitemap", "label": "sitemap()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/app/sitemap.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_smart_advisor_page", "label": "smart-advisor/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor/page.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/smart-advisor/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_smart_advisor_page_metadata", "label": "metadata", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/smart-advisor/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_smart_advisor_page_smartadvisorpage", "label": "SmartAdvisorPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorPage()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/app/smart-advisor/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_track_page", "label": "track/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "track/page.tsx", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/track/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_track_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/track/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_track_page_trackpage", "label": "TrackPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TrackPage()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/app/track/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_trust_seals_page", "label": "trust-seals/page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "trust-seals/page.tsx", "community": 184, "community_name": "trust-seals/page.tsx", "source_file": "frontend/application/app/trust-seals/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_trust_seals_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 184, "community_name": "trust-seals/page.tsx", "source_file": "frontend/application/app/trust-seals/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_trust_seals_page_trustsealspage", "label": "TrustSealsPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TrustSealsPage()", "community": 184, "community_name": "trust-seals/page.tsx", "source_file": "frontend/application/app/trust-seals/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_videos_page", "label": "videos/page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "videos/page.tsx", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/videos/page.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_app_videos_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/videos/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_videos_page_getinitialvideos", "label": "getInitialVideos()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getInitialVideos()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/videos/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_videos_page_videos", "label": "Videos()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/app/videos/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_wiki_slug_page", "label": "wiki/[slug]/page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/[slug]/page.tsx", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_application_app_wiki_slug_page_getwikiterm", "label": "getWikiTerm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "getWikiTerm()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_wiki_slug_page_getrelatedproducts", "label": "getRelatedProducts()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getRelatedProducts()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_wiki_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_wiki_slug_page_wikitermpage", "label": "WikiTermPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiTermPage()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_wiki_page", "label": "wiki/page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/page.tsx", "community": 224, "community_name": "wiki/page.tsx", "source_file": "frontend/application/app/wiki/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_wiki_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 224, "community_name": "wiki/page.tsx", "source_file": "frontend/application/app/wiki/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_wiki_page_wikipage", "label": "WikiPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiPage()", "community": 224, "community_name": "wiki/page.tsx", "source_file": "frontend/application/app/wiki/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_addressmodal", "label": "AddressModal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressModal.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_application_components_addressmodal_addressformdata", "label": "AddressFormData", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressFormData", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_addressmodal_normalizedigits", "label": "normalizeDigits()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeDigits()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_addressmodal_validateaddressform", "label": "validateAddressForm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "validateAddressForm()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_addressmodal_addressmodalprops", "label": "AddressModalProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressModalProps", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_addressmodal_addressmodal", "label": "AddressModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressModal()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_analyticsdeferred", "label": "AnalyticsDeferred.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsDeferred.tsx", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/components/AnalyticsDeferred.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_analyticsdeferred_window", "label": "Window", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Window", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/components/AnalyticsDeferred.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_analyticsdeferred_analyticsdeferredprops", "label": "AnalyticsDeferredProps", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsDeferredProps", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/components/AnalyticsDeferred.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_analyticsdeferred_analyticsdeferred", "label": "AnalyticsDeferred()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AnalyticsDeferred()", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/components/AnalyticsDeferred.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_analyticsdeferred_analyticsdeferred_gtag", "label": "gtag()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "gtag()", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/components/AnalyticsDeferred.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_archivepage", "label": "ArchivePage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "ArchivePage.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 36}, {"id": "frontend_application_components_archivepage_icon_map", "label": "ICON_MAP", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ICON_MAP", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_archivepage_category_map", "label": "CATEGORY_MAP", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORY_MAP", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_archivepage_archiveproductcard", "label": "ArchiveProductCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchiveProductCard()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_archivepage_archiveproductlistitem", "label": "ArchiveProductListItem()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchiveProductListItem()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_archivepage_archivepage", "label": "ArchivePage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchivePage()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_authmodal", "label": "AuthModal.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 15.8, "font": {"size": 12, "color": "#ffffff"}, "title": "AuthModal.tsx", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 21}, {"id": "frontend_application_components_authmodal_authmodalprops", "label": "AuthModalProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModalProps", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_authmodal_extractotpfromtext", "label": "extractOtpFromText()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "extractOtpFromText()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_authmodal_otpcooldownexpiries", "label": "otpCooldownExpiries", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "otpCooldownExpiries", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_authmodal_authmodal", "label": "AuthModal()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModal()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_authmodal_rationale_97", "label": "IMPORTANT: only depend on isOpen here \u2014 NOT subView. If we depend on subView,", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IMPORTANT: only depend on isOpen here \u2014 NOT subView. If we depend on subView,", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "rationale", "degree": 1}, {"id": "frontend_application_components_b2blandingclient", "label": "B2BLandingClient.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BLandingClient.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/B2BLandingClient.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_b2blandingclient_b2blandingclient", "label": "B2BLandingClient()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BLandingClient()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/B2BLandingClient.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_b2bportal", "label": "B2BPortal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "B2BPortal.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/B2BPortal.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_application_components_b2bportal_b2bportal", "label": "B2BPortal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BPortal()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/B2BPortal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_backbutton", "label": "BackButton.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BackButton.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/BackButton.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_backbutton_backbuttonprops", "label": "BackButtonProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BackButtonProps", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/BackButton.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_backbutton_backbutton", "label": "BackButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BackButton()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/BackButton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_bannerplacement", "label": "BannerPlacement.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BannerPlacement.tsx", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/BannerPlacement.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_bannerplacement_bannerplacementprops", "label": "BannerPlacementProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BannerPlacementProps", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/BannerPlacement.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_bannerplacement_bannerplacement", "label": "BannerPlacement()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BannerPlacement()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/BannerPlacement.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_blogpage", "label": "BlogPage.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPage.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_blogpage_blogcategory", "label": "BlogCategory", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogCategory", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_blogpage_blogpostitem", "label": "BlogPostItem", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPostItem", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_blogpage_blogpage", "label": "BlogPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPage()", "community": 134, "community_name": "blog/page.tsx", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_blogpostclient", "label": "BlogPostClient.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPostClient.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/BlogPostClient.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_blogpostclient_blogpostclientprops", "label": "BlogPostClientProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPostClientProps", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/BlogPostClient.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_blogpostclient_blogpostclient", "label": "BlogPostClient()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPostClient()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/components/BlogPostClient.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_blogpreviewsection", "label": "BlogPreviewSection.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPreviewSection.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/BlogPreviewSection.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_application_components_blogpreviewsection_blogpost", "label": "BlogPost", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPost", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/BlogPreviewSection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_blogpreviewsection_blogpreviewsection", "label": "BlogPreviewSection()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPreviewSection()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/BlogPreviewSection.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs", "label": "loadBlogs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadBlogs()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/BlogPreviewSection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_brandlogo", "label": "BrandLogo.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BrandLogo.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/BrandLogo.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_brandlogo_brandlogoprops", "label": "BrandLogoProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BrandLogoProps", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/BrandLogo.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_brandlogo_brandlogo", "label": "BrandLogo()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BrandLogo()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/BrandLogo.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_cartdrawer", "label": "CartDrawer.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.7, "font": {"size": 12, "color": "#ffffff"}, "title": "CartDrawer.tsx", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/CartDrawer.tsx", "file_type": "code", "degree": 24}, {"id": "frontend_application_components_cartdrawer_cartdrawer", "label": "CartDrawer()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CartDrawer()", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/CartDrawer.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_checkoutpage", "label": "CheckoutPage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "CheckoutPage.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/CheckoutPage.tsx", "file_type": "code", "degree": 31}, {"id": "frontend_application_components_checkoutpage_checkoutpage", "label": "CheckoutPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CheckoutPage()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/CheckoutPage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_components_contactformclient", "label": "ContactFormClient.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactFormClient.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_contactformclient_contactinfoitem", "label": "ContactInfoItem", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactInfoItem", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_contactformclient_contactformclient", "label": "ContactFormClient()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactFormClient()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", "label": "fetchContactInfo()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchContactInfo()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_deleteconfirmmodal", "label": "DeleteConfirmModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteConfirmModal.tsx", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", "label": "DeleteConfirmModalProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteConfirmModalProps", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", "label": "DeleteConfirmModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteConfirmModal()", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_enamadbadge", "label": "EnamadBadge.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "EnamadBadge.tsx", "community": 184, "community_name": "trust-seals/page.tsx", "source_file": "frontend/application/components/EnamadBadge.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_enamadbadge_enamadbadge", "label": "EnamadBadge()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "EnamadBadge()", "community": 184, "community_name": "trust-seals/page.tsx", "source_file": "frontend/application/components/EnamadBadge.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_errorboundary", "label": "ErrorBoundary.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary.tsx", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_errorboundary_props", "label": "Props", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_state", "label": "State", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "State", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary", "label": "ErrorBoundary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_errorboundary_errorboundary_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", "label": ".getDerivedStateFromError()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDerivedStateFromError()", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", "label": ".componentDidCatch()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".componentDidCatch()", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_handleretry", "label": ".handleRetry()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleRetry()", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_render", "label": ".render()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".render()", "community": 140, "community_name": "ErrorBoundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorpages", "label": "ErrorPages.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorPages.tsx", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/components/ErrorPages.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_errorpages_notfoundpage", "label": "NotFoundPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFoundPage()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/components/ErrorPages.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_errorpages_servererrorpage", "label": "ServerErrorPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ServerErrorPage()", "community": 157, "community_name": "ErrorPages.tsx", "source_file": "frontend/application/components/ErrorPages.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_faqsection", "label": "FAQSection.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQSection.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/FAQSection.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_faqsection_faqitem", "label": "FAQItem", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQItem", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/FAQSection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_faqsection_faqsection", "label": "FAQSection()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQSection()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/FAQSection.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_faqsection_faqsection_loadfaqs", "label": "loadFaqs()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadFaqs()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/FAQSection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_featuredproducts", "label": "FeaturedProducts.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "FeaturedProducts.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/FeaturedProducts.tsx", "file_type": "code", "degree": 26}, {"id": "frontend_application_components_featuredproducts_productcard", "label": "ProductCard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductCard()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/FeaturedProducts.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_featuredproducts_featuredproducts", "label": "FeaturedProducts()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FeaturedProducts()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/FeaturedProducts.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_footer", "label": "Footer.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/Footer.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_footer_footer", "label": "Footer()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/Footer.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_header", "label": "Header.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Header.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 28}, {"id": "frontend_application_components_header_menu_icons", "label": "MENU_ICONS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MENU_ICONS", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_header_header", "label": "Header()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Header()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_header_header_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_headerbutton", "label": "HeaderButton.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderButton.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/HeaderButton.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_headerbutton_headerbuttonprops", "label": "HeaderButtonProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderButtonProps", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/HeaderButton.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_headerbutton_headerbutton", "label": "HeaderButton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderButton()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/HeaderButton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_hero", "label": "Hero.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero.tsx", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/Hero.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_application_components_hero_statcounter", "label": "StatCounter()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "StatCounter()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/Hero.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_hero_hero", "label": "Hero()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/Hero.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_ingredientwiki", "label": "IngredientWiki.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.2, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientWiki.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/IngredientWiki.tsx", "file_type": "code", "degree": 15}, {"id": "frontend_application_components_ingredientwiki_ingredient_match_keywords", "label": "INGREDIENT_MATCH_KEYWORDS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INGREDIENT_MATCH_KEYWORDS", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/IngredientWiki.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_ingredientwiki_formatingredientdisplayname", "label": "formatIngredientDisplayName()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "formatIngredientDisplayName()", "community": 224, "community_name": "wiki/page.tsx", "source_file": "frontend/application/components/IngredientWiki.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_ingredientwiki_ingredientwiki", "label": "IngredientWiki()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientWiki()", "community": 224, "community_name": "wiki/page.tsx", "source_file": "frontend/application/components/IngredientWiki.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_loginmodal", "label": "LoginModal.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "LoginModal.tsx", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_application_components_loginmodal_extractotpfromtext", "label": "extractOtpFromText()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "extractOtpFromText()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_loginmodal_loginmodalprops", "label": "LoginModalProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginModalProps", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_loginmodal_loginotpcooldownexpiries", "label": "loginOtpCooldownExpiries", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loginOtpCooldownExpiries", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_loginmodal_loginmodal", "label": "LoginModal()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginModal()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_loginmodal_rationale_46", "label": "IMPORTANT: only depend on isOpen \u2014 NOT step, to avoid stacking extra history\u2026", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IMPORTANT: only depend on isOpen \u2014 NOT step, to avoid stacking extra history\u2026", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "rationale", "degree": 1}, {"id": "frontend_application_components_loginmodal_rationale_99", "label": "NOTE: We intentionally do NOT use navigator.credentials.get (WebOTP API) here.", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NOTE: We intentionally do NOT use navigator.credentials.get (WebOTP API) here.", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "rationale", "degree": 1}, {"id": "frontend_application_components_maintenancepage", "label": "MaintenancePage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "MaintenancePage.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/MaintenancePage.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_maintenancepage_maintenancepage", "label": "MaintenancePage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "MaintenancePage()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/MaintenancePage.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_mobilebottomnav", "label": "MobileBottomNav.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "MobileBottomNav.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/MobileBottomNav.tsx", "file_type": "code", "degree": 20}, {"id": "frontend_application_components_mobilebottomnav_solution_items", "label": "SOLUTION_ITEMS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SOLUTION_ITEMS", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/MobileBottomNav.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_mobilebottomnav_mobilebottomnav", "label": "MobileBottomNav()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MobileBottomNav()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/MobileBottomNav.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_navigationprogressbar", "label": "NavigationProgressBar.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NavigationProgressBar.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/NavigationProgressBar.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_navigationprogressbar_progressbarinner", "label": "ProgressBarInner()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProgressBarInner()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/NavigationProgressBar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_navigationprogressbar_navigationprogressbar", "label": "NavigationProgressBar()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "NavigationProgressBar()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/NavigationProgressBar.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_networkbanner", "label": "NetworkBanner.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "NetworkBanner.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/NetworkBanner.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_networkbanner_networkbanner", "label": "NetworkBanner()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NetworkBanner()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/NetworkBanner.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_orderdetailsmodal", "label": "OrderDetailsModal.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderDetailsModal.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", "label": "OrderDetailsModalProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderDetailsModalProps", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "label": "OrderDetailsModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderDetailsModal()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", "label": "getStatusIcon()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getStatusIcon()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", "label": "getStatusLabel()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getStatusLabel()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_ordersuccess", "label": "OrderSuccess.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderSuccess.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/OrderSuccess.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_ordersuccess_ordersuccess", "label": "OrderSuccess()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderSuccess()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/OrderSuccess.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_ordertracking", "label": "OrderTracking.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderTracking.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/OrderTracking.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_ordertracking_ordertracking", "label": "OrderTracking()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderTracking()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/OrderTracking.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_otpinput5", "label": "OtpInput5.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "OtpInput5.tsx", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/OtpInput5.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_otpinput5_otpinput5props", "label": "OtpInput5Props", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OtpInput5Props", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/OtpInput5.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_otpinput5_otpinput5", "label": "OtpInput5()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "OtpInput5()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/components/OtpInput5.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_petprofile", "label": "PetProfile.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "PetProfile.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/PetProfile.tsx", "file_type": "code", "degree": 33}, {"id": "frontend_application_components_petprofile_petprofile", "label": "PetProfile()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PetProfile()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/PetProfile.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_podcastinlineplayer", "label": "PodcastInlinePlayer.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PodcastInlinePlayer.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", "label": "PodcastInlinePlayerProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PodcastInlinePlayerProps", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_podcastinlineplayer_playback_rates", "label": "PLAYBACK_RATES", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PLAYBACK_RATES", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", "label": "PodcastInlinePlayer()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "PodcastInlinePlayer()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_podcastplayermodal", "label": "PodcastPlayerModal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PodcastPlayerModal.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastPlayerModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", "label": "PodcastPlayerModalProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PodcastPlayerModalProps", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastPlayerModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_podcastplayermodal_playback_rates", "label": "PLAYBACK_RATES", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PLAYBACK_RATES", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastPlayerModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_podcastplayermodal_podcastplayermodal", "label": "PodcastPlayerModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PodcastPlayerModal()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastPlayerModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/PodcastPlayerModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_prescriptionuploadmodal", "label": "PrescriptionUploadModal.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModal.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", "label": "PrescriptionUploadModalProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModalProps", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "label": "PrescriptionUploadModal()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModal()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_productimagezoommodal", "label": "ProductImageZoomModal.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductImageZoomModal.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductImageZoomModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_productimagezoommodal_productimagezoommodalprops", "label": "ProductImageZoomModalProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductImageZoomModalProps", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductImageZoomModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productimagezoommodal_productimagezoommodal", "label": "ProductImageZoomModal()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductImageZoomModal()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductImageZoomModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage", "label": "ProductPage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ProductPage.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 45}, {"id": "frontend_application_components_productpage_icon_map", "label": "ICON_MAP", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ICON_MAP", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage_calculatorstate", "label": "CalculatorState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CalculatorState", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage_usecalculatorstore", "label": "useCalculatorStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useCalculatorStore", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_productpage_videomodalplayer", "label": "VideoModalPlayer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoModalPlayer", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_productpage_productreviews", "label": "ProductReviews", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductReviews", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_productpage_productimagezoommodal", "label": "ProductImageZoomModal", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductImageZoomModal", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_productpage_gallerymediaitem", "label": "GalleryMediaItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GalleryMediaItem", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage_isvideourl", "label": "isVideoUrl()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isVideoUrl()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_productpage_productpage", "label": "ProductPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductPage()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_application_components_productreviews", "label": "ProductReviews.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductReviews.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/ProductReviews.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_productreviews_reviewitem", "label": "ReviewItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ReviewItem", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/ProductReviews.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productreviews_productreviewsprops", "label": "ProductReviewsProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductReviewsProps", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/ProductReviews.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productreviews_productreviews", "label": "ProductReviews()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductReviews()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/ProductReviews.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_safeimage", "label": "SafeImage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "SafeImage.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/SafeImage.tsx", "file_type": "code", "degree": 27}, {"id": "frontend_application_components_safeimage_safeimageprops", "label": "SafeImageProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SafeImageProps", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/SafeImage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_safeimage_safeimage", "label": "SafeImage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "SafeImage()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/SafeImage.tsx", "file_type": "code", "degree": 23}, {"id": "frontend_application_components_searchresultspage", "label": "SearchResultsPage.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultsPage.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/SearchResultsPage.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_searchresultspage_searchresultspage", "label": "SearchResultsPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultsPage()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/SearchResultsPage.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_searchableselect", "label": "SearchableSelect.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchableSelect.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/SearchableSelect.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_searchableselect_searchableselectprops", "label": "SearchableSelectProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchableSelectProps", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/SearchableSelect.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_searchableselect_searchableselect", "label": "SearchableSelect()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchableSelect()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/SearchableSelect.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_skeleton", "label": "components/Skeleton.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "components/Skeleton.tsx", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_application_components_skeleton_skeletonprops", "label": "SkeletonProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SkeletonProps", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_skeleton_skeleton", "label": "Skeleton()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_skeleton_productcardskeleton", "label": "ProductCardSkeleton()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductCardSkeleton()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_skeleton_productlistskeleton", "label": "ProductListSkeleton()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductListSkeleton()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_skeleton_petprofileskeleton", "label": "PetProfileSkeleton()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PetProfileSkeleton()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_skeleton_orderrowskeleton", "label": "OrderRowSkeleton()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderRowSkeleton()", "community": 68, "community_name": "components/Skeleton.tsx", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_smartadvisor", "label": "SmartAdvisor.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.4, "font": {"size": 12, "color": "#ffffff"}, "title": "SmartAdvisor.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 23}, {"id": "frontend_application_components_smartadvisor_smartadvisorprops", "label": "SmartAdvisorProps", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorProps", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_smartadvisor_current_symptoms", "label": "CURRENT_SYMPTOMS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CURRENT_SYMPTOMS", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_smartadvisor_medical_histories", "label": "MEDICAL_HISTORIES", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MEDICAL_HISTORIES", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_smartadvisor_smartadvisor", "label": "SmartAdvisor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisor()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_testimonialssection", "label": "TestimonialsSection.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsSection.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/TestimonialsSection.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_testimonialssection_testimonial", "label": "Testimonial", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testimonial", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/TestimonialsSection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_testimonialssection_testimonialssection", "label": "TestimonialsSection()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsSection()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/TestimonialsSection.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", "label": "loadTestimonials()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loadTestimonials()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/TestimonialsSection.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tickerbanner", "label": "TickerBanner.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "TickerBanner.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/TickerBanner.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_tickerbanner_tickerbanner", "label": "TickerBanner()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TickerBanner()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/TickerBanner.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_tooltip", "label": "Tooltip.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Tooltip.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/Tooltip.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_tooltip_tooltipprops", "label": "TooltipProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TooltipProps", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/Tooltip.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tooltip_tooltip", "label": "Tooltip()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Tooltip()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/Tooltip.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_topupmodal", "label": "TopUpModal.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpModal.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_application_components_topupmodal_topupmodalprops", "label": "TopUpModalProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpModalProps", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_topupmodal_preset_amounts", "label": "PRESET_AMOUNTS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PRESET_AMOUNTS", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_topupmodal_topupmodal", "label": "TopUpModal()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpModal()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_userdashboard", "label": "UserDashboard.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.0, "font": {"size": 12, "color": "#ffffff"}, "title": "UserDashboard.tsx", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/components/UserDashboard.tsx", "file_type": "code", "degree": 36}, {"id": "frontend_application_components_userdashboard_userdashboard", "label": "UserDashboard()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UserDashboard()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/UserDashboard.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_vetgallery", "label": "VetGallery.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "VetGallery.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_application_components_vetgallery_testimonialitem", "label": "TestimonialItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialItem", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_vetgallery_fallback_videos", "label": "FALLBACK_VIDEOS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FALLBACK_VIDEOS", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_vetgallery_displayvideoitem", "label": "DisplayVideoItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DisplayVideoItem", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_vetgallery_vetgallery", "label": "VetGallery()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "VetGallery()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_videomodalplayer", "label": "VideoModalPlayer.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoModalPlayer.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VideoModalPlayer.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_videomodalplayer_videomodalplayerprops", "label": "VideoModalPlayerProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoModalPlayerProps", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VideoModalPlayer.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_videomodalplayer_playback_rates", "label": "PLAYBACK_RATES", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PLAYBACK_RATES", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VideoModalPlayer.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_videomodalplayer_videomodalplayer", "label": "VideoModalPlayer()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoModalPlayer()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VideoModalPlayer.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VideoModalPlayer.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_videospage", "label": "VideosPage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosPage.tsx", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/components/VideosPage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_components_videospage_videospage", "label": "VideosPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosPage()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/components/VideosPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_tests_cartdrawer_test", "label": "CartDrawer.test.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CartDrawer.test.tsx", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_tests_cartdrawer_test_mockproduct", "label": "mockProduct", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockProduct", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tests_featuredproducts_test", "label": "FeaturedProducts.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "FeaturedProducts.test.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_tests_featuredproducts_test_mockproducts", "label": "mockProducts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockProducts", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tests_featuredproducts_test_mockpush", "label": "mockPush", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockPush", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tests_footer_test", "label": "Footer.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer.test.tsx", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/components/__tests__/Footer.test.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_tests_header_test", "label": "Header.test.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Header.test.tsx", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/components/__tests__/Header.test.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_tests_hero_test", "label": "Hero.test.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero.test.tsx", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/components/__tests__/Hero.test.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_tests_tooltip_test", "label": "Tooltip.test.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Tooltip.test.tsx", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_catalog_catalogpagespread", "label": "CatalogPageSpread.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogPageSpread.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_application_components_catalog_catalogpagespread_categorymeta", "label": "CategoryMeta", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryMeta", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", "label": "CatalogPageSpreadProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogPageSpreadProps", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_catalogpagespread_getformbadge", "label": "getFormBadge()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getFormBadge()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", "label": "getSpeciesBadge()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "getSpeciesBadge()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "label": "CatalogPageSpread()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogPageSpread()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_catalog_flipbookcatalog", "label": "FlipbookCatalog.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FlipbookCatalog.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", "label": "FlipbookCatalogProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "FlipbookCatalogProps", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", "label": "normalizeSearchText()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeSearchText()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", "label": "FlipbookCatalog()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FlipbookCatalog()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_catalog_productdetailmodal", "label": "ProductDetailModal.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductDetailModal.tsx", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", "label": "ProductDetailModalProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductDetailModalProps", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", "label": "ProductDetailModal()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductDetailModal()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_eslint_config", "label": "application/eslint.config.mjs", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "application/eslint.config.mjs", "community": 254, "community_name": "application/eslint.config.mjs", "source_file": "frontend/application/eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_eslint_config_eslintconfig", "label": "eslintConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslintConfig", "community": 254, "community_name": "application/eslint.config.mjs", "source_file": "frontend/application/eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products", "label": "products.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "products.ts", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 30}, {"id": "frontend_application_lib_data_products_specialist", "label": "Specialist", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Specialist", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_pettype", "label": "PetType", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "PetType", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_data_products_ingredientinfo", "label": "IngredientInfo", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientInfo", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_data_products_dosageresult", "label": "DosageResult", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DosageResult", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_faq", "label": "FAQ", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQ", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_product", "label": "Product", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Product", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 27}, {"id": "frontend_application_lib_data_products_ingredients_wiki", "label": "INGREDIENTS_WIKI", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "INGREDIENTS_WIKI", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_data_products_products", "label": "PRODUCTS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PRODUCTS", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_data_provinces", "label": "provinces.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "provinces.ts", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/data/provinces.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_data_provinces_iran_provinces", "label": "IRAN_PROVINCES", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "IRAN_PROVINCES", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/data/provinces.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_data_provinces_province_cities", "label": "PROVINCE_CITIES", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PROVINCE_CITIES", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/data/provinces.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_data_scientificterms", "label": "data/scientificTerms.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "data/scientificTerms.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/data/scientificTerms.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_data_scientificterms_scientificterm", "label": "ScientificTerm", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTerm", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/data/scientificTerms.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_scientificterms_scientific_terms", "label": "SCIENTIFIC_TERMS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SCIENTIFIC_TERMS", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/data/scientificTerms.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_fonts", "label": "fonts.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "fonts.ts", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/lib/fonts.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_fonts_vazirmatn", "label": "vazirmatn", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vazirmatn", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/lib/fonts.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_fonts_lalezar", "label": "lalezar", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lalezar", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/lib/fonts.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_hooks_usenetworkstatus", "label": "useNetworkStatus.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "useNetworkStatus.ts", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "label": "useNetworkStatus()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "useNetworkStatus()", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_media", "label": "media.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "media.ts", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/lib/media.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_media_getmediaurl", "label": "getMediaUrl()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "getMediaUrl()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/lib/media.ts", "file_type": "code", "degree": 20}, {"id": "frontend_application_lib_petcompatibility", "label": "petCompatibility.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "petCompatibility.ts", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/petCompatibility.ts", "file_type": "code", "degree": 9}, {"id": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "isSuitableForDog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuitableForDog()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/petCompatibility.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "isSuitableForCat()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuitableForCat()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/petCompatibility.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "isSuitableForBoth()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "isSuitableForBoth()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/petCompatibility.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "isSpeciesCompatible()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.6, "font": {"size": 0, "color": "#ffffff"}, "title": "isSpeciesCompatible()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/petCompatibility.ts", "file_type": "code", "degree": 13}, {"id": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "matchesMedicalSymptom()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "matchesMedicalSymptom()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/petCompatibility.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_schema", "label": "schema.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "schema.ts", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 16}, {"id": "frontend_application_lib_schema_organizationschemaoptions", "label": "OrganizationSchemaOptions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrganizationSchemaOptions", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_schema_generateorganizationschema", "label": "generateOrganizationSchema()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateOrganizationSchema()", "community": 139, "community_name": "layout.tsx", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_schema_generatelocalbusinessschema", "label": "generateLocalBusinessSchema()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateLocalBusinessSchema()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_schema_b2bserviceschemaoptions", "label": "B2BServiceSchemaOptions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BServiceSchemaOptions", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_schema_generateb2bserviceschema", "label": "generateB2BServiceSchema()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateB2BServiceSchema()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_schema_medicalwebpageschemaoptions", "label": "MedicalWebPageSchemaOptions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MedicalWebPageSchemaOptions", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_schema_generatemedicalwebpageschema", "label": "generateMedicalWebPageSchema()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMedicalWebPageSchema()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_schema_videoobjectschemaoptions", "label": "VideoObjectSchemaOptions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoObjectSchemaOptions", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_schema_generatevideoobjectschema", "label": "generateVideoObjectSchema()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "generateVideoObjectSchema()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_schema_breadcrumbitem", "label": "BreadcrumbItem", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BreadcrumbItem", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "generateBreadcrumbSchema()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "generateBreadcrumbSchema()", "community": 17, "community_name": "schema.ts", "source_file": "frontend/application/lib/schema.ts", "file_type": "code", "degree": 9}, {"id": "frontend_application_lib_seo", "label": "seo.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "seo.ts", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 28}, {"id": "frontend_application_lib_seo_seoconfig", "label": "SeoConfig", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoConfig", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_seo_default_seo_config", "label": "DEFAULT_SEO_CONFIG", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DEFAULT_SEO_CONFIG", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_seo_getseoconfig", "label": "getSeoConfig()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getSeoConfig()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 12}, {"id": "frontend_application_lib_seo_cleanpagetitle", "label": "cleanPageTitle()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "cleanPageTitle()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_seo_formatpagetitle", "label": "formatPageTitle()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "formatPageTitle()", "community": 95, "community_name": "wiki/[slug]/page.tsx", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 9}, {"id": "frontend_application_lib_seo_pagemetadataoptions", "label": "PageMetadataOptions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PageMetadataOptions", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_seo_getpagemetadata", "label": "getPageMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.3, "font": {"size": 12, "color": "#ffffff"}, "title": "getPageMetadata()", "community": 71, "community_name": "getPageMetadata", "source_file": "frontend/application/lib/seo.ts", "file_type": "code", "degree": 37}, {"id": "frontend_application_lib_services_api", "label": "lib/services/api.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 20.8, "font": {"size": 12, "color": "#ffffff"}, "title": "lib/services/api.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 39}, {"id": "frontend_application_lib_services_api_getbaseurl", "label": "getBaseURL()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getBaseURL()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_api_baseurl", "label": "baseURL", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "baseURL", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_api_base_domain", "label": "BASE_DOMAIN", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BASE_DOMAIN", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_lib_services_api_apierrorpayload", "label": "ApiErrorPayload", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErrorPayload", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_api_api", "label": "api", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "api", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 30}, {"id": "frontend_application_lib_services_authservice", "label": "authService.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "authService.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_services_authservice_user", "label": "User", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_services_authservice_authresponse", "label": "AuthResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponse", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_apierr", "label": "ApiErr", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErr", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice", "label": "AuthService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthService", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 14}, {"id": "frontend_application_lib_services_authservice_authservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_getinstance", "label": ".getInstance()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInstance()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_sendotp", "label": ".sendOtp()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_verifyotp", "label": ".verifyOtp()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyOtp()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_register", "label": ".register()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_login", "label": ".login()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_getprofile", "label": ".getProfile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProfile()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_updateprofile", "label": ".updateProfile()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProfile()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice_logout", "label": ".logout()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".logout()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "axios_axios", "label": "axios", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 309, "community_name": "axios", "source_file": "axios", "file_type": "code", "degree": 0}, {"id": "frontend_application_lib_services_orderservice", "label": "orderService.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "orderService.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_services_orderservice_orderitem", "label": "OrderItem", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderItem", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_order", "label": "Order", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_apierr", "label": "ApiErr", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErr", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_orderservice", "label": "OrderService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderService", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_services_orderservice_orderservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_orderservice_getinstance", "label": ".getInstance()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInstance()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_orderservice_createorder", "label": ".createOrder()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createOrder()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_orderservice_getuserorders", "label": ".getUserOrders()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserOrders()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", "label": ".getOrderById()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrderById()", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice", "label": "productService.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "productService.ts", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 33}, {"id": "frontend_application_lib_services_productservice_category_slug_to_name", "label": "CATEGORY_SLUG_TO_NAME", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORY_SLUG_TO_NAME", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_backendproduct", "label": "BackendProduct", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BackendProduct", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice", "label": "ProductService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "ProductService", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 33}, {"id": "frontend_application_lib_services_productservice_productservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_getinstance", "label": ".getInstance()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInstance()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": ".mapBackendToFrontend()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".mapBackendToFrontend()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 7}, {"id": "frontend_application_lib_services_productservice_productservice_serverfetch", "label": ".serverFetch()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".serverFetch()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_lib_services_productservice_productservice_getproducts", "label": ".getProducts()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProducts()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_lib_services_productservice_productservice_getproductbyid", "label": ".getProductById()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductById()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "label": ".getProductBySlug()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductBySlug()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "label": ".getFeaturedProducts()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFeaturedProducts()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_services_productservice_productservice_getactivefilters", "label": ".getActiveFilters()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getActiveFilters()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", "label": ".getNavigationFilters()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNavigationFilters()", "community": 3, "community_name": "productService.ts", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_getbanners", "label": ".getBanners()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBanners()", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_ticketservice", "label": "ticketService.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ticketService.ts", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/services/ticketService.ts", "file_type": "code", "degree": 7}, {"id": "frontend_application_lib_services_ticketservice_ticketmessage", "label": "TicketMessage", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "TicketMessage", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/services/ticketService.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_services_ticketservice_ticket", "label": "Ticket", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ticket", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/services/ticketService.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_services_ticketservice_createticketpayload", "label": "CreateTicketPayload", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateTicketPayload", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/services/ticketService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_ticketservice_ticketservice", "label": "ticketService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ticketService", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/services/ticketService.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_services_videoservice", "label": "videoService.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "videoService.ts", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 9}, {"id": "frontend_application_lib_services_videoservice_video", "label": "Video", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Video", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_videoservice_normalizevideo", "label": "normalizeVideo()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "normalizeVideo()", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_services_videoservice_videoservice", "label": "videoService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "videoService", "community": 144, "community_name": "SafeImage.tsx", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_store_tests_cartstore_test", "label": "cartStore.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "cartStore.test.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", "file_type": "code", "degree": 7}, {"id": "frontend_application_lib_store_tests_cartstore_test_mockproduct", "label": "mockProduct", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "mockProduct", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_tests_settingsstore_test", "label": "settingsStore.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "settingsStore.test.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_store_tests_userstore_test", "label": "userStore.test.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "userStore.test.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", "file_type": "code", "degree": 6}, {"id": "frontend_application_lib_store_cartstore", "label": "cartStore.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "cartStore.ts", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 27}, {"id": "frontend_application_lib_store_cartstore_cartitem", "label": "CartItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CartItem", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_cartstore_order", "label": "Order", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_cartstore_cartstore", "label": "CartStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CartStore", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_cartstore_usecartstore", "label": "useCartStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 18.9, "font": {"size": 12, "color": "#ffffff"}, "title": "useCartStore", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 32}, {"id": "frontend_application_lib_store_settingsstore", "label": "settingsStore.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 21.1, "font": {"size": 12, "color": "#ffffff"}, "title": "settingsStore.ts", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 40}, {"id": "frontend_application_lib_store_settingsstore_scientificterm", "label": "ScientificTerm", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTerm", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_settingsstore_settingsstore", "label": "SettingsStore", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsStore", "community": 113, "community_name": "settingsStore.ts", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "useSettingsStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 28.6, "font": {"size": 12, "color": "#ffffff"}, "title": "useSettingsStore", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 67}, {"id": "frontend_application_lib_store_uistore", "label": "uiStore.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "uiStore.ts", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/store/uiStore.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_lib_store_uistore_uistate", "label": "UIState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UIState", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/store/uiStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_uistore_useuistore", "label": "useUIStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useUIStore", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/store/uiStore.ts", "file_type": "code", "degree": 7}, {"id": "frontend_application_lib_store_usepetstore", "label": "usePetStore.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "usePetStore.ts", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 25}, {"id": "frontend_application_lib_store_usepetstore_reminder", "label": "Reminder", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Reminder", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_usepetstore_healthlog", "label": "HealthLog", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthLog", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_usepetstore_petconsumption", "label": "PetConsumption", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PetConsumption", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_usepetstore_petprofile", "label": "PetProfile", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PetProfile", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_usepetstore_petstore", "label": "PetStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PetStore", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_usepetstore_usepetstore", "label": "usePetStore", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "usePetStore", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 27}, {"id": "frontend_application_lib_store_userstore", "label": "userStore.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.6, "font": {"size": 12, "color": "#ffffff"}, "title": "userStore.ts", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 31}, {"id": "frontend_application_lib_store_userstore_userrole", "label": "UserRole", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserRole", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_address", "label": "Address", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Address", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_store_userstore_transaction", "label": "Transaction", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Transaction", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_userprofile", "label": "UserProfile", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserProfile", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_userstore", "label": "UserStore", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserStore", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_useuserstore", "label": "useUserStore", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.3, "font": {"size": 12, "color": "#ffffff"}, "title": "useUserStore", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 30}, {"id": "frontend_application_lib_types", "label": "types.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.1, "font": {"size": 12, "color": "#ffffff"}, "title": "types.ts", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 22}, {"id": "frontend_application_lib_types_banner", "label": "Banner", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Banner", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_types_smartadvisorrule", "label": "SmartAdvisorRule", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorRule", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_testimonial", "label": "Testimonial", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Testimonial", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_ingredient", "label": "Ingredient", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Ingredient", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_prescription", "label": "Prescription", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Prescription", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_b2binquiry", "label": "B2BInquiry", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BInquiry", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_partneraccount", "label": "PartnerAccount", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PartnerAccount", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_dosageconfig", "label": "DosageConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DosageConfig", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_homeapiresponse", "label": "HomeApiResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeApiResponse", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_types_navigationtarget", "label": "NavigationTarget", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "NavigationTarget", "community": 21, "community_name": "useSettingsStore", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_types_navigationhandler", "label": "NavigationHandler", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NavigationHandler", "community": 4, "community_name": "HomeClient.tsx", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_usecatalogmode", "label": "useCatalogMode.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useCatalogMode.ts", "community": 185, "community_name": "CartDrawer.tsx", "source_file": "frontend/application/lib/useCatalogMode.ts", "file_type": "code", "degree": 12}, {"id": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "useCatalogMode()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.6, "font": {"size": 12, "color": "#ffffff"}, "title": "useCatalogMode()", "community": 61, "community_name": "ProductPage.tsx", "source_file": "frontend/application/lib/useCatalogMode.ts", "file_type": "code", "degree": 20}, {"id": "frontend_application_lib_utils", "label": "utils.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.8, "font": {"size": 12, "color": "#ffffff"}, "title": "utils.ts", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 28}, {"id": "frontend_application_lib_utils_topersian", "label": "toPersian()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "toPersian()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 38}, {"id": "frontend_application_lib_utils_toenglishdigits", "label": "toEnglishDigits()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "toEnglishDigits()", "community": 197, "community_name": "AuthModal.tsx", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_utils_cn", "label": "cn()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "cn()", "community": 14, "community_name": "toPersian", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 27}, {"id": "frontend_application_next_config", "label": "next.config.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "next.config.ts", "community": 225, "community_name": "next.config.ts", "source_file": "frontend/application/next.config.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_next_config_securityheaders", "label": "securityHeaders", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "securityHeaders", "community": 225, "community_name": "next.config.ts", "source_file": "frontend/application/next.config.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_next_config_nextconfig", "label": "nextConfig", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "nextConfig", "community": 225, "community_name": "next.config.ts", "source_file": "frontend/application/next.config.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_package", "label": "application/package.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "application/package.json", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 6}, {"id": "frontend_application_package_name", "label": "name", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_version", "label": "version", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_private", "label": "private", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts", "label": "scripts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 5}, {"id": "frontend_application_package_scripts_dev", "label": "dev", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts_build", "label": "build", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts_start", "label": "start", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts_lint", "label": "lint", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 141, "community_name": "application/package.json", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_dependencies", "label": "dependencies", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "dependencies", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 10}, {"id": "frontend_application_package_dependencies_axios", "label": "axios", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_axios", "label": "axios", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_lucide_react", "label": "lucide-react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_lucide_react", "label": "lucide-react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_motion", "label": "motion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "motion", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "motion", "label": "motion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "motion", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_next", "label": "next", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "next", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "next", "label": "next", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "next", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_nextjs_toploader", "label": "nextjs-toploader", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "nextjs-toploader", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "nextjs_toploader", "label": "nextjs-toploader", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "nextjs-toploader", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_react", "label": "react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_react", "label": "react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_react_dom", "label": "react-dom", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_sonner", "label": "sonner", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "sonner", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "sonner", "label": "sonner", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "sonner", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_dependencies_zustand", "label": "zustand", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_zustand", "label": "zustand", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 87, "community_name": "dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies", "label": "devDependencies", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 14}, {"id": "frontend_application_package_devdependencies_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 324, "community_name": "@tailwindcss/postcss", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 324, "community_name": "@tailwindcss/postcss", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_testing_library_react", "label": "@testing-library/react", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "testing_library_react", "label": "@testing-library/react", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_types_node", "label": "@types/node", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_types_react", "label": "@types/react", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 325, "community_name": "@types/react-dom", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_types_react_dom", "label": "@types/react-dom", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 325, "community_name": "@types/react-dom", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 238, "community_name": "@vitejs/plugin-react", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 238, "community_name": "@vitejs/plugin-react", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_eslint", "label": "eslint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_eslint_config_next", "label": "eslint-config-next", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-next", "community": 179, "community_name": "eslint-config-next", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_config_next", "label": "eslint-config-next", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-next", "community": 179, "community_name": "eslint-config-next", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_jsdom", "label": "jsdom", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "jsdom", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "jsdom", "label": "jsdom", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsdom", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_tailwindcss", "label": "tailwindcss", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_tailwindcss", "label": "tailwindcss", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 315, "community_name": "typescript", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_json_typescript", "label": "typescript", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 315, "community_name": "typescript", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_devdependencies_vitest", "label": "vitest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "vitest", "label": "vitest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 50, "community_name": "devDependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_postcss_config", "label": "postcss.config.mjs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.mjs", "community": 255, "community_name": "postcss.config.mjs", "source_file": "frontend/application/postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_postcss_config_config", "label": "config", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 255, "community_name": "postcss.config.mjs", "source_file": "frontend/application/postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig", "label": "application/tsconfig.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "application/tsconfig.json", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 3}, {"id": "frontend_application_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 16}, {"id": "frontend_application_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 4}, {"id": "frontend_application_tsconfig_json_ref_dom", "label": "dom", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dom", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_json_ref_dom_iterable", "label": "dom.iterable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dom.iterable", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_json_ref_esnext", "label": "esnext", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esnext", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_allowjs", "label": "allowJs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "allowJs", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_noemit", "label": "noEmit", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", "label": "resolveJsonModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveJsonModule", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_jsx", "label": "jsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_incremental", "label": "incremental", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "incremental", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_plugins", "label": "plugins", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "plugins", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_paths", "label": "paths", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_include", "label": "include", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 7}, {"id": "ref_next_env_d_ts", "label": "next-env.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "next-env.d.ts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_json_ref_ts", "label": "**/*.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.ts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_tsx", "label": "**/*.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.tsx", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_next_types_ts", "label": ".next/types/**/*.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".next/types/**/*.ts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_next_dev_types_ts", "label": ".next/dev/types/**/*.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".next/dev/types/**/*.ts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_mts", "label": "**/*.mts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.mts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_exclude", "label": "exclude", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 6}, {"id": "frontend_application_tsconfig_json_ref_node_modules", "label": "node_modules", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node_modules", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_tests", "label": "**/__tests__/**", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "**/__tests__/**", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_vitest_config_ts", "label": "vitest.config.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_vitest_setup_ts", "label": "vitest.setup.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.setup.ts", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_json_ref_prisma", "label": "prisma", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 96, "community_name": "compilerOptions", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_vitest_config", "label": "vitest.config.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 289, "community_name": "vitest.config.ts", "source_file": "frontend/application/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "frontend_application_vitest_setup", "label": "vitest.setup.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.setup.ts", "community": 256, "community_name": "vitest.setup.ts", "source_file": "frontend/application/vitest.setup.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_vitest_setup_mockintersectionobserver", "label": "MockIntersectionObserver", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MockIntersectionObserver", "community": 256, "community_name": "vitest.setup.ts", "source_file": "frontend/application/vitest.setup.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_vitest_setup_localstoragemock", "label": "localStorageMock", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "localStorageMock", "community": 256, "community_name": "vitest.setup.ts", "source_file": "frontend/application/vitest.setup.ts", "file_type": "code", "degree": 1}, {"id": "package", "label": "package.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 5}, {"id": "package_name", "label": "name", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_version", "label": "version", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_private", "label": "private", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts", "label": "scripts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 14}, {"id": "package_scripts_install_all", "label": "install:all", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "install:all", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_backend", "label": "dev:backend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:backend", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_frontend", "label": "dev:frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:frontend", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_admin", "label": "dev:admin", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:admin", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev", "label": "dev", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_backend", "label": "build:backend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:backend", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_frontend", "label": "build:frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:frontend", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_admin", "label": "build:admin", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build:admin", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build", "label": "build", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_start", "label": "start", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_e2e", "label": "test:e2e", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:e2e", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_e2e_ui", "label": "test:e2e:ui", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:e2e:ui", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_e2e_report", "label": "test:e2e:report", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test:e2e:report", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies", "label": "devDependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 6}, {"id": "package_devdependencies_playwright_test", "label": "@playwright/test", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@playwright/test", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "playwright_test", "label": "@playwright/test", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@playwright/test", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "concept", "degree": 1}, {"id": "package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_json_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "concept", "degree": 1}, {"id": "package_devdependencies_concurrently", "label": "concurrently", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "concurrently", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "concurrently", "label": "concurrently", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "concurrently", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "concept", "degree": 1}, {"id": "package_devdependencies_dotenv", "label": "dotenv", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "dotenv", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "dotenv", "label": "dotenv", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dotenv", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "concept", "degree": 1}, {"id": "package_devdependencies_typescript", "label": "typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_json_typescript", "label": "typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 82, "community_name": "scripts", "source_file": "package.json", "file_type": "concept", "degree": 1}, {"id": "playwright_config", "label": "playwright.config.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright.config.ts", "community": 12, "community_name": "index.ts", "source_file": "playwright.config.ts", "file_type": "code", "degree": 1}, {"id": "scripts_backup_db", "label": "backup_db.sh", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_db.sh", "community": 257, "community_name": "backup_db.sh", "source_file": "scripts/backup_db.sh", "file_type": "code", "degree": 1}, {"id": "scripts_backup_db_sh__entry", "label": "backup_db.sh script", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_db.sh script", "community": 257, "community_name": "backup_db.sh", "source_file": "scripts/backup_db.sh", "file_type": "code", "degree": 1}, {"id": "scripts_deploy", "label": "deploy.sh", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy.sh", "community": 201, "community_name": "deploy.sh", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 3}, {"id": "scripts_deploy_sh__entry", "label": "deploy.sh script", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy.sh script", "community": 201, "community_name": "deploy.sh", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 1}, {"id": "scripts_deploy_docker_buildkit", "label": "DOCKER_BUILDKIT", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOCKER_BUILDKIT", "community": 201, "community_name": "deploy.sh", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 1}, {"id": "scripts_deploy_compose_docker_cli_build", "label": "COMPOSE_DOCKER_CLI_BUILD", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "COMPOSE_DOCKER_CLI_BUILD", "community": 201, "community_name": "deploy.sh", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers", "label": "open-browsers.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "open-browsers.js", "community": 166, "community_name": "open-browsers.js", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 5}, {"id": "scripts_open_browsers_exec", "label": "{ exec }", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "{ exec }", "community": 166, "community_name": "open-browsers.js", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers_http", "label": "http", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "http", "community": 166, "community_name": "open-browsers.js", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers_urls", "label": "URLS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "URLS", "community": 166, "community_name": "open-browsers.js", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers_openurl", "label": "openUrl()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "openUrl()", "community": 166, "community_name": "open-browsers.js", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 2}, {"id": "scripts_open_browsers_checkandopen", "label": "checkAndOpen()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkAndOpen()", "community": 166, "community_name": "open-browsers.js", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 2}, {"id": "scripts_start_dev", "label": "start-dev.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "start-dev.js", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 7}, {"id": "scripts_start_dev_spawn_execsync", "label": "{ spawn, execSync }", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "{ spawn, execSync }", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_http", "label": "http", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "http", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_fs", "label": "fs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "fs", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_path", "label": "path", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "path", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_distmainpath", "label": "distMainPath", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "distMainPath", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_waitforbackend", "label": "waitForBackend()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "waitForBackend()", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 2}, {"id": "scripts_start_dev_waitforbackend_check", "label": "check()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "check()", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_backend", "label": "backend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backend", "community": 142, "community_name": "start-dev.js", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "start", "label": "start.sh", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start.sh", "community": 258, "community_name": "start.sh", "source_file": "start.sh", "file_type": "code", "degree": 1}, {"id": "start_sh__entry", "label": "start.sh script", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "start.sh script", "community": 258, "community_name": "start.sh", "source_file": "start.sh", "file_type": "code", "degree": 1}, {"id": "tests_e2e_admin_admin_b2b_submissions_spec", "label": "admin-b2b-submissions.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-b2b-submissions.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/admin/admin-b2b-submissions.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_admin_admin_blogs_crud_spec", "label": "admin-blogs-crud.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-blogs-crud.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/admin/admin-blogs-crud.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_admin_admin_crud_spec", "label": "admin-crud.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-crud.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/admin/admin-crud.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_admin_admin_orders_flow_spec", "label": "admin-orders-flow.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-orders-flow.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/admin/admin-orders-flow.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_admin_admin_rbac_roles_spec", "label": "admin-rbac-roles.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-rbac-roles.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/admin/admin-rbac-roles.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_security_xss_ratelimit_spec", "label": "xss-ratelimit.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "xss-ratelimit.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/security/xss-ratelimit.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_auth_otp_recovery_spec", "label": "auth-otp-recovery.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "auth-otp-recovery.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/auth-otp-recovery.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_b2b_flow_spec", "label": "b2b-flow.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b-flow.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/b2b-flow.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_blog_wiki_spec", "label": "blog-wiki.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "blog-wiki.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/blog-wiki.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_cart_operations_spec", "label": "cart-operations.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cart-operations.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/cart-operations.spec.ts", "file_type": "code", "degree": 3}, {"id": "tests_e2e_storefront_cart_operations_spec_parsepersianprice", "label": "parsePersianPrice()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "parsePersianPrice()", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/cart-operations.spec.ts", "file_type": "code", "degree": 1}, {"id": "tests_e2e_storefront_checkout_flow_spec", "label": "checkout-flow.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "checkout-flow.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/checkout-flow.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_concurrency_stock_spec", "label": "concurrency-stock.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "concurrency-stock.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/concurrency-stock.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_contact_spec", "label": "contact.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/contact.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_error_pages_404_500_spec", "label": "error-pages-404-500.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "error-pages-404-500.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/error-pages-404-500.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_order_tracking_spec", "label": "order-tracking.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "order-tracking.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/order-tracking.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_e2e_storefront_shop_filter_search_spec", "label": "shop-filter-search.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "shop-filter-search.spec.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/e2e/storefront/shop-filter-search.spec.ts", "file_type": "code", "degree": 2}, {"id": "tests_fixtures_admin_auth_setup", "label": "admin-auth.setup.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-auth.setup.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/fixtures/admin-auth.setup.ts", "file_type": "code", "degree": 2}, {"id": "tests_fixtures_admin_auth_setup_authfile", "label": "authFile", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "authFile", "community": 12, "community_name": "index.ts", "source_file": "tests/fixtures/admin-auth.setup.ts", "file_type": "code", "degree": 1}, {"id": "tests_fixtures_index", "label": "index.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.0, "font": {"size": 12, "color": "#ffffff"}, "title": "index.ts", "community": 12, "community_name": "index.ts", "source_file": "tests/fixtures/index.ts", "file_type": "code", "degree": 18}, {"id": "tests_fixtures_index_test", "label": "test", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "test", "community": 12, "community_name": "index.ts", "source_file": "tests/fixtures/index.ts", "file_type": "code", "degree": 17}, {"id": "tsconfig", "label": "tsconfig.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.json", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 10}, {"id": "tsconfig_compileroptions_target", "label": "target", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_module", "label": "module", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 4}, {"id": "tsconfig_json_ref_dom", "label": "DOM", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOM", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "tsconfig_json_ref_dom_iterable", "label": "DOM.Iterable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DOM.Iterable", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "tsconfig_json_ref_esnext", "label": "ESNext", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ESNext", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_noemit", "label": "noEmit", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_types", "label": "types", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "tsconfig_json_ref_node", "label": "node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_playwright_test", "label": "@playwright/test", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "@playwright/test", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 4}, {"id": "tsconfig_include", "label": "include", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "ref_playwright_config_ts", "label": "playwright.config.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright.config.ts", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_tests_ts", "label": "tests/**/*.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tests/**/*.ts", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "tsconfig_exclude", "label": "exclude", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "code", "degree": 4}, {"id": "tsconfig_json_ref_node_modules", "label": "node_modules", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "node_modules", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_backend", "label": "backend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backend", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_frontend", "label": "frontend", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "frontend", "community": 12, "community_name": "index.ts", "source_file": "tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "agents_rules_graphify", "label": "rules/graphify.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "rules/graphify.md", "community": 228, "community_name": "rules/graphify.md", "source_file": ".agents/rules/graphify.md", "file_type": "document", "degree": 1}, {"id": "agents_rules_graphify_graphify", "label": "graphify", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 228, "community_name": "rules/graphify.md", "source_file": ".agents/rules/graphify.md", "file_type": "document", "degree": 1}, {"id": "agents_workflows_graphify", "label": ".agents/workflows/graphify.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".agents/workflows/graphify.md", "community": 229, "community_name": ".agents/workflows/graphify.md", "source_file": ".agents/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "agents_workflows_graphify_workflow_graphify", "label": "Workflow: graphify", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Workflow: graphify", "community": 229, "community_name": ".agents/workflows/graphify.md", "source_file": ".agents/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency", "label": "AGENCY.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENCY.md", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "label": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 14}, {"id": "ai_agency_agency_your_identity", "label": "Your Identity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Your Identity", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_activation", "label": "Activation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Activation", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_step_1_detect_project_intent", "label": "STEP 1 \u2014 Detect Project Intent", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STEP 1 \u2014 Detect Project Intent", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", "label": "STEP 2 \u2014 Token Limit / Context Resume Protocol (CRITICAL)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "STEP 2 \u2014 Token Limit / Context Resume Protocol (CRITICAL)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_pipeline_a_new_project_greenfield", "label": "PIPELINE A \u2014 New Project (GREENFIELD)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PIPELINE A \u2014 New Project (GREENFIELD)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", "label": "PIPELINE B \u2014 Review & Improve Existing Project (REVIEW_AND_PLAN) \u2605", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "PIPELINE B \u2014 Review & Improve Existing Project (REVIEW_AND_PLAN) \u2605", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 4}, {"id": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", "label": "Phase 1: Specialist Review (All agents read, none write code yet)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 1: Specialist Review (All agents read, none write code yet)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", "label": "Phase 2: Master Synthesis (02_product_manager in SYNTHESIS mode)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2: Master Synthesis (02_product_manager in SYNTHESIS mode)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_phase_3_execution_same_as_always", "label": "Phase 3: Execution (Same as always)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3: Execution (Same as always)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", "label": "PIPELINE C \u2014 Add Specific Feature (ADD_FEATURE)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PIPELINE C \u2014 Add Specific Feature (ADD_FEATURE)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", "label": "PIPELINE D \u2014 Content & SEO Only (CONTENT_CREATION)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PIPELINE D \u2014 Content & SEO Only (CONTENT_CREATION)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_task_execution_loop_all_pipelines", "label": "TASK EXECUTION LOOP (All Pipelines)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TASK EXECUTION LOOP (All Pipelines)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_state_machine_active_agent_tracking", "label": "State Machine \u2014 Active Agent Tracking", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "State Machine \u2014 Active Agent Tracking", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_state_json_template_full_schema_v3", "label": "State.json Template (Full Schema v3)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "State.json Template (Full Schema v3)", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_agent_directory_reference", "label": "Agent Directory Reference", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Agent Directory Reference", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agency_real_data_policy", "label": "Real Data Policy", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Real Data Policy", "community": 79, "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "source_file": ".ai_agency/AGENCY.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake", "label": "00_intake.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "00_intake.md", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake_brownfield_detection", "label": "Brownfield Detection", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Brownfield Detection", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_agents_00_intake_1_ask_don_t_assume", "label": "1. Ask \u2014 Don't Assume", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Ask \u2014 Don't Assume", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake_2_forbidden_actions", "label": "2. Forbidden Actions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Forbidden Actions", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_00_intake_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 131, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/00_intake.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor", "label": "01_auditor.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "01_auditor.md", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", "label": "1. Detect Tech Stack First (Universal)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Detect Tech Stack First (Universal)", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", "label": "2. Explicit Scoring Methodology (Universal)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Explicit Scoring Methodology (Universal)", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", "label": "3. Code Coverage Ratio Rule", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Code Coverage Ratio Rule", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_4_deep_directory_scanning", "label": "4. Deep Directory Scanning", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Deep Directory Scanning", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_5_forbidden_actions", "label": "5. Forbidden Actions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Forbidden Actions", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_01_auditor_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 110, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/01_auditor.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo", "label": "02_ceo.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "02_ceo.md", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_02_ceo_1_mode_direction_decision", "label": "1. Mode & Direction Decision", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Mode & Direction Decision", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", "label": "2. Brownfield Strategic Evaluation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Brownfield Strategic Evaluation", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_3_risk_assessment", "label": "3. Risk Assessment", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Risk Assessment", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_4_forbidden_actions", "label": "4. Forbidden Actions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Forbidden Actions", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_02_ceo_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 118, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/02_ceo.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager", "label": "03_product_manager.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "03_product_manager.md", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", "label": "\u2605 SYNTHESIS MODE (called after Review Phase completes)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2605 SYNTHESIS MODE (called after Review Phase completes)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 4}, {"id": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", "label": "What You Read (ALL of these \u2014 the full picture)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Read (ALL of these \u2014 the full picture)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_synthesis_rules", "label": "Synthesis Rules", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Synthesis Rules", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", "label": "Output of Synthesis Mode", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Output of Synthesis Mode", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", "label": "DECOMPOSE MODE \u2014 Normal Operation (New Projects)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "DECOMPOSE MODE \u2014 Normal Operation (New Projects)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 2}, {"id": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 8}, {"id": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", "label": "1. Hierarchical Decomposition Algorithm (3-Tier)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Hierarchical Decomposition Algorithm (3-Tier)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", "label": "2. Sub-step Definition (Required for all tasks)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Sub-step Definition (Required for all tasks)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", "label": "3. Brownfield Completeness Rule", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Brownfield Completeness Rule", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_4_role_assignment_rules", "label": "4. Role Assignment Rules", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Role Assignment Rules", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", "label": "5. Dependency Tracking (Strict)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Dependency Tracking (Strict)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_6_priority_assignment", "label": "6. Priority Assignment", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Priority Assignment", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_7_forbidden_actions", "label": "7. Forbidden Actions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Forbidden Actions", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_03_product_manager_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 80, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/03_product_manager.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect", "label": "04_architect.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "04_architect.md", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 8}, {"id": "ai_agency_agents_04_architect_1_stack_detection_brownfield", "label": "1. Stack Detection (Brownfield)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Stack Detection (Brownfield)", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_2_stack_selection_greenfield", "label": "2. Stack Selection (Greenfield)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Stack Selection (Greenfield)", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", "label": "3. Single Non-Negotiable Stack Choice", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Single Non-Negotiable Stack Choice", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", "label": "4. Tech Stack Must Be Written to state.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Tech Stack Must Be Written to state.json", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_5_directory_layout", "label": "5. Directory Layout", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Directory Layout", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_6_openapi_api_contract", "label": "6. OpenAPI / API Contract", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. OpenAPI / API Contract", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_7_forbidden_actions", "label": "7. Forbidden Actions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Forbidden Actions", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_04_architect_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 101, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/04_architect.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend", "label": "05_dev_backend.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "05_dev_backend.md", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", "label": "\u2605 REVIEW MODE (called during Review Phase)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2605 REVIEW MODE (called during Review Phase)", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", "label": "Your Domain \u2014 What You Review (ONLY these areas)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Your Domain \u2014 What You Review (ONLY these areas)", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_what_you_do_not_review", "label": "What You DO NOT Review", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You DO NOT Review", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", "label": "What You Look For (Backend Expert Eyes Only)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Look For (Backend Expert Eyes Only)", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_output", "label": "Output", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Output", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", "label": "IMPLEMENT MODE \u2014 Normal Operation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IMPLEMENT MODE \u2014 Normal Operation", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", "label": "1. Always Read Tech Stack First", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Always Read Tech Stack First", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", "label": "2. Sub-step Execution (Token Resume Support)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Sub-step Execution (Token Resume Support)", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", "label": "3. Mandatory Test Authoring", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Mandatory Test Authoring", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_4_code_quality_standards", "label": "4. Code Quality Standards", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Code Quality Standards", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", "label": "5. File Scope Boundary", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. File Scope Boundary", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_6_forbidden_actions", "label": "6. Forbidden Actions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Forbidden Actions", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_05_dev_backend_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 81, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/05_dev_backend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend", "label": "06_dev_frontend.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "06_dev_frontend.md", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", "label": "\u2605 REVIEW MODE (called during Review Phase)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2605 REVIEW MODE (called during Review Phase)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", "label": "Your Domain \u2014 What You Review (ONLY these areas)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Your Domain \u2014 What You Review (ONLY these areas)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", "label": "What You DO NOT Review", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You DO NOT Review", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", "label": "What You Look For (Frontend Expert Eyes Only)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Look For (Frontend Expert Eyes Only)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_output", "label": "Output", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Output", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", "label": "IMPLEMENT MODE \u2014 Normal Operation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IMPLEMENT MODE \u2014 Normal Operation", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 8}, {"id": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", "label": "1. Always Read Tech Stack First", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Always Read Tech Stack First", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", "label": "2. Sub-step Execution (Token Resume Support)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Sub-step Execution (Token Resume Support)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", "label": "3. API Mocking Requirement", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. API Mocking Requirement", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", "label": "4. Modular Component Architecture", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Modular Component Architecture", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", "label": "5. Responsive Design (Mandatory)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Responsive Design (Mandatory)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", "label": "6. File Scope Boundary", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. File Scope Boundary", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", "label": "7. Forbidden Actions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Forbidden Actions", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 72, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/06_dev_frontend.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer", "label": "07_qa_engineer.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "07_qa_engineer.md", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", "label": "1. Detect Test Runner from Tech Stack", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Detect Test Runner from Tech Stack", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", "label": "2. Execution Output Capture (Mandatory)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Execution Output Capture (Mandatory)", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", "label": "3. Acceptance Criteria Verification", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Acceptance Criteria Verification", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", "label": "4. Failure Routing Protocol", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Failure Routing Protocol", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", "label": "5. Success Routing Protocol", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Success Routing Protocol", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", "label": "6. Forbidden Actions", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Forbidden Actions", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 105, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/07_qa_engineer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa", "label": "08_visual_qa.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "08_visual_qa.md", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", "label": "\u2605 REVIEW MODE (called during Review Phase)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2605 REVIEW MODE (called during Review Phase)", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", "label": "Your Domain \u2014 What You Review (ONLY these areas)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Your Domain \u2014 What You Review (ONLY these areas)", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_what_you_do_not_review", "label": "What You DO NOT Review", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You DO NOT Review", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", "label": "What You Look For (UX Expert Eyes Only)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Look For (UX Expert Eyes Only)", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_output", "label": "Output", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Output", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", "label": "INSPECT MODE \u2014 Normal Operation (Post-Task Verification)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "INSPECT MODE \u2014 Normal Operation (Post-Task Verification)", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 8}, {"id": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", "label": "1. Framework-Aware Analysis", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Framework-Aware Analysis", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", "label": "2. DOM & Semantic Structure Analysis", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. DOM & Semantic Structure Analysis", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", "label": "3. Accessibility Compliance", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Accessibility Compliance", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", "label": "4. Responsive Layout Verification", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Responsive Layout Verification", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", "label": "5. Fallback Inspection Mode", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Fallback Inspection Mode", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", "label": "6. Defect Routing Protocol", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Defect Routing Protocol", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_7_forbidden_actions", "label": "7. Forbidden Actions", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Forbidden Actions", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_08_visual_qa_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 73, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/08_visual_qa.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security", "label": "09_devops_security.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "09_devops_security.md", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", "label": "\u2605 REVIEW MODE (called during Review Phase)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2605 REVIEW MODE (called during Review Phase)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", "label": "Your Domain \u2014 What You Review (ONLY these areas)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Your Domain \u2014 What You Review (ONLY these areas)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_what_you_do_not_review", "label": "What You DO NOT Review", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You DO NOT Review", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", "label": "What You Look For (Security Expert Eyes Only)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Look For (Security Expert Eyes Only)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_output", "label": "Output", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Output", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", "label": "ENFORCE MODE \u2014 Normal Operation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ENFORCE MODE \u2014 Normal Operation", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", "label": "1. Active Secret Scanning (All Modified Files)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Active Secret Scanning (All Modified Files)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", "label": "2. Docker Container Verification (if Dockerfile exists)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Docker Container Verification (if Dockerfile exists)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", "label": "3. CI/CD Basic Check (if `.github/workflows/` exists)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. CI/CD Basic Check (if `.github/workflows/` exists)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", "label": "4. Failure Routing Protocol", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Failure Routing Protocol", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_5_forbidden_actions", "label": "5. Forbidden Actions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Forbidden Actions", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_09_devops_security_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 84, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/09_devops_security.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer", "label": "10_tech_writer.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10_tech_writer.md", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", "label": "1. Mark Active Task as Complete", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Mark Active Task as Complete", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_2_documentation_updates", "label": "2. Documentation Updates", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Documentation Updates", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", "label": "3. Dynamic Routing Protocol (CRITICAL)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Dynamic Routing Protocol (CRITICAL)", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", "label": "4. Backlog Insufficiency Check", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Backlog Insufficiency Check", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_5_forbidden_actions", "label": "5. Forbidden Actions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Forbidden Actions", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_10_tech_writer_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 111, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/10_tech_writer.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy", "label": "11_deploy.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "11_deploy.md", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", "label": "1. Pre-Deployment Checklist", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Pre-Deployment Checklist", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_2_build_verification", "label": "2. Build Verification", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Build Verification", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", "label": "3. Deployment Strategy (Based on Target)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Deployment Strategy (Based on Target)", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_4_post_deployment_health_check", "label": "4. Post-Deployment Health Check", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Post-Deployment Health Check", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_5_forbidden_actions", "label": "5. Forbidden Actions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Forbidden Actions", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", "label": "Required Output Artifacts (What files to write/update)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts (What files to write/update)", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_11_deploy_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 112, "community_name": "Operational Rules & Boundaries", "source_file": ".ai_agency/agents/11_deploy.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content", "label": "12_seo_content.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12_seo_content.md", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_role_core_objective", "label": "Role & Core Objective", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Role & Core Objective", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 8}, {"id": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", "label": "\u2605 REVIEW MODE (called during Review Phase)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2605 REVIEW MODE (called during Review Phase)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", "label": "Your Domain \u2014 What You Review (ONLY these areas)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Your Domain \u2014 What You Review (ONLY these areas)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_what_you_do_not_review", "label": "What You DO NOT Review", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You DO NOT Review", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", "label": "What You Look For (SEO Expert Eyes Only)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Look For (SEO Expert Eyes Only)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_output", "label": "Output", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Output", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_create_mode_normal_operation", "label": "CREATE MODE \u2014 Normal Operation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CREATE MODE \u2014 Normal Operation", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", "label": "Strict Input Specifications (What files to read)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strict Input Specifications (What files to read)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_operating_modes", "label": "Operating Modes", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Operating Modes", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", "label": "MODE 1: REVIEW (called during Review Phase)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "MODE 1: REVIEW (called during Review Phase)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "label": "MODE 2: CONTENT CREATION (standalone task from backlog)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MODE 2: CONTENT CREATION (standalone task from backlog)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 7}, {"id": "ai_agency_agents_12_seo_content_step_1_gather_resources", "label": "Step 1: Gather Resources", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 1: Gather Resources", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_step_2_seo_strategy", "label": "Step 2: SEO Strategy", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2: SEO Strategy", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", "label": "Step 3: Content Hierarchy", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 3: Content Hierarchy", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", "label": "Step 4: Structured Data (JSON-LD)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 4: Structured Data (JSON-LD)", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", "label": "Step 5: Real Content Writing Standards", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 5: Real Content Writing Standards", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_step_6_image_alt_text", "label": "Step 6: Image Alt Text", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 6: Image Alt Text", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_operational_rules_boundaries", "label": "Operational Rules & Boundaries", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Operational Rules & Boundaries", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_agents_12_seo_content_forbidden_actions", "label": "Forbidden Actions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Forbidden Actions", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_file_scope_boundary", "label": "File Scope Boundary", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "File Scope Boundary", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_required_output_artifacts", "label": "Required Output Artifacts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Required Output Artifacts", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_agents_12_seo_content_expected_json_output_schema", "label": "Expected JSON Output Schema", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expected JSON Output Schema", "community": 57, "community_name": "Role & Core Objective", "source_file": ".ai_agency/agents/12_seo_content.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_memory_scratchpad", "label": "scratchpad.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "scratchpad.md", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "source_file": ".ai_agency/memory/scratchpad.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "label": "\ud83d\udcdd Active Agent Working Scratchpad", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udcdd Active Agent Working Scratchpad", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "source_file": ".ai_agency/memory/scratchpad.md", "file_type": "document", "degree": 4}, {"id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", "label": "Project: Canina Veterinary E-Commerce System", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Project: Canina Veterinary E-Commerce System", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "source_file": ".ai_agency/memory/scratchpad.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", "label": "\ud83d\udccb Requirements & Persona Mandates (Intake & User Request)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udccb Requirements & Persona Mandates (Intake & User Request)", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "source_file": ".ai_agency/memory/scratchpad.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_memory_scratchpad_execution_target", "label": "\ud83c\udfd7\ufe0f Execution Target", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udfd7\ufe0f Execution Target", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", "source_file": ".ai_agency/memory/scratchpad.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_api_contract", "label": "api_contract.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "api_contract.md", "community": 180, "community_name": "API Contract Specification", "source_file": ".ai_agency/specs/api_contract.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_api_contract_api_contract_specification", "label": "API Contract Specification", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "API Contract Specification", "community": 180, "community_name": "API Contract Specification", "source_file": ".ai_agency/specs/api_contract.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", "label": "1. OpenAPI 3.0 (Swagger) Specification", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. OpenAPI 3.0 (Swagger) Specification", "community": 180, "community_name": "API Contract Specification", "source_file": ".ai_agency/specs/api_contract.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", "label": "2. Endpoint Definitions & Data Types", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Endpoint Definitions & Data Types", "community": 180, "community_name": "API Contract Specification", "source_file": ".ai_agency/specs/api_contract.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_architecture_spec", "label": "architecture_spec.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "architecture_spec.md", "community": 160, "community_name": "Architecture Specification", "source_file": ".ai_agency/specs/architecture_spec.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_architecture_spec_architecture_specification", "label": "Architecture Specification", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture Specification", "community": 160, "community_name": "Architecture Specification", "source_file": ".ai_agency/specs/architecture_spec.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", "label": "1. Single Non-Negotiable Tech Stack", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Single Non-Negotiable Tech Stack", "community": 160, "community_name": "Architecture Specification", "source_file": ".ai_agency/specs/architecture_spec.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_architecture_spec_2_directory_structure_tree", "label": "2. Directory Structure Tree", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Directory Structure Tree", "community": 160, "community_name": "Architecture Specification", "source_file": ".ai_agency/specs/architecture_spec.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_architecture_spec_3_state_management_strategy", "label": "3. State Management Strategy", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. State Management Strategy", "community": 160, "community_name": "Architecture Specification", "source_file": ".ai_agency/specs/architecture_spec.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", "label": "4. Deployment / Docker Architecture", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Deployment / Docker Architecture", "community": 160, "community_name": "Architecture Specification", "source_file": ".ai_agency/specs/architecture_spec.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_prd", "label": "prd.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prd.md", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_prd_product_requirement_document_prd", "label": "Product Requirement Document (PRD)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Product Requirement Document (PRD)", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 6}, {"id": "ai_agency_specs_prd_1_executive_vision", "label": "1. Executive Vision", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Executive Vision", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_prd_2_target_audience", "label": "2. Target Audience", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Target Audience", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_prd_3_functional_requirements", "label": "3. Functional Requirements", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Functional Requirements", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", "label": "4. Non-Functional Requirements (Performance, Security)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Non-Functional Requirements (Performance, Security)", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_prd_5_epic_feature_breakdown", "label": "5. Epic / Feature Breakdown", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Epic / Feature Breakdown", "community": 150, "community_name": "Product Requirement Document (PRD)", "source_file": ".ai_agency/specs/prd.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_project_health", "label": "project_health.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "project_health.md", "community": 161, "community_name": "Project Health Audit Report", "source_file": ".ai_agency/specs/project_health.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_project_health_project_health_audit_report", "label": "Project Health Audit Report", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Health Audit Report", "community": 161, "community_name": "Project Health Audit Report", "source_file": ".ai_agency/specs/project_health.md", "file_type": "document", "degree": 5}, {"id": "ai_agency_specs_project_health_1_audit_score_summary", "label": "1. Audit Score Summary", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Audit Score Summary", "community": 161, "community_name": "Project Health Audit Report", "source_file": ".ai_agency/specs/project_health.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_project_health_2_technical_debt_inventory", "label": "2. Technical Debt Inventory", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Technical Debt Inventory", "community": 161, "community_name": "Project Health Audit Report", "source_file": ".ai_agency/specs/project_health.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_project_health_3_outdated_dependencies_list", "label": "3. Outdated Dependencies List", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Outdated Dependencies List", "community": 161, "community_name": "Project Health Audit Report", "source_file": ".ai_agency/specs/project_health.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", "label": "4. Security Risks (.env leaks, unprotected ports)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Security Risks (.env leaks, unprotected ports)", "community": 161, "community_name": "Project Health Audit Report", "source_file": ".ai_agency/specs/project_health.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_readme", "label": "reviews/README.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "reviews/README.md", "community": 259, "community_name": "reviews/README.md", "source_file": ".ai_agency/specs/reviews/README.md", "file_type": "document", "degree": 0}, {"id": "ai_agency_specs_reviews_backend_review", "label": "backend_review.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "backend_review.md", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "source_file": ".ai_agency/specs/reviews/backend_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "source_file": ".ai_agency/specs/reviews/backend_review.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_specs_reviews_backend_review_architectural_overview", "label": "Architectural Overview", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Architectural Overview", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "source_file": ".ai_agency/specs/reviews/backend_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", "label": "Critical Review Findings & Required Enhancements", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Critical Review Findings & Required Enhancements", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "source_file": ".ai_agency/specs/reviews/backend_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_code_health_review", "label": "code_health_review.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "code_health_review.md", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "source_file": ".ai_agency/specs/reviews/code_health_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "label": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "source_file": ".ai_agency/specs/reviews/code_health_review.md", "file_type": "document", "degree": 4}, {"id": "ai_agency_specs_reviews_code_health_review_executive_summary", "label": "Executive Summary", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Executive Summary", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "source_file": ".ai_agency/specs/reviews/code_health_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_code_health_review_key_findings", "label": "Key Findings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Key Findings", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "source_file": ".ai_agency/specs/reviews/code_health_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_code_health_review_recommendations", "label": "Recommendations", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommendations", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "source_file": ".ai_agency/specs/reviews/code_health_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_frontend_review", "label": "frontend_review.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "frontend_review.md", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "source_file": ".ai_agency/specs/reviews/frontend_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "source_file": ".ai_agency/specs/reviews/frontend_review.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_specs_reviews_frontend_review_architectural_overview", "label": "Architectural Overview", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Architectural Overview", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "source_file": ".ai_agency/specs/reviews/frontend_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", "label": "Critical Review Findings & Required Enhancements", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Critical Review Findings & Required Enhancements", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "source_file": ".ai_agency/specs/reviews/frontend_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_security_review", "label": "security_review.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "security_review.md", "community": 202, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "source_file": ".ai_agency/specs/reviews/security_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", "label": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "community": 202, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "source_file": ".ai_agency/specs/reviews/security_review.md", "file_type": "document", "degree": 2}, {"id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", "label": "Security Architecture & Best Practices", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security Architecture & Best Practices", "community": 202, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "source_file": ".ai_agency/specs/reviews/security_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_seo_content_review", "label": "seo_content_review.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seo_content_review.md", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "file_type": "document", "degree": 3}, {"id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", "label": "Overview & Content Foundation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview & Content Foundation", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", "label": "SEO & Content Requirements", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SEO & Content Requirements", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_ux_review", "label": "ux_review.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ux_review.md", "community": 203, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "source_file": ".ai_agency/specs/reviews/ux_review.md", "file_type": "document", "degree": 1}, {"id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", "label": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "community": 203, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "source_file": ".ai_agency/specs/reviews/ux_review.md", "file_type": "document", "degree": 2}, {"id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", "label": "Persona Experience Alignment", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Persona Experience Alignment", "community": 203, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "source_file": ".ai_agency/specs/reviews/ux_review.md", "file_type": "document", "degree": 1}, {"id": "antigravity_instructions", "label": "instructions.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "instructions.md", "community": 230, "community_name": "instructions.md", "source_file": ".antigravity/instructions.md", "file_type": "document", "degree": 1}, {"id": "antigravity_instructions_graphify", "label": "graphify", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 230, "community_name": "instructions.md", "source_file": ".antigravity/instructions.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify", "label": ".antigravity/workflows/graphify.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".antigravity/workflows/graphify.md", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_graphify", "label": "/graphify", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "/graphify", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 11}, {"id": "antigravity_workflows_graphify_usage", "label": "Usage", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Usage", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_what_graphify_is_for", "label": "What graphify is for", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What graphify is for", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "label": "What You Must Do When Invoked", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Must Do When Invoked", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 12}, {"id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", "label": "Step 1 - Ensure graphify is installed", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 1 - Ensure graphify is installed", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_2_detect_files", "label": "Step 2 - Detect files", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2 - Detect files", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", "label": "Step 2.5 - Video and audio (only if video files detected)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2.5 - Video and audio (only if video files detected)", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", "label": "Step 3 - Extract entities and relationships", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 3 - Extract entities and relationships", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 4}, {"id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", "label": "Part A - Structural extraction for code files", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Part A - Structural extraction for code files", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", "label": "Part B - Semantic extraction (parallel subagents)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Part B - Semantic extraction (parallel subagents)", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", "label": "Part C - Merge AST + semantic into final extraction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Part C - Merge AST + semantic into final extraction", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", "label": "Step 4 - Build graph, cluster, analyze, generate outputs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 4 - Build graph, cluster, analyze, generate outputs", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", "label": "Step 4.5 - Graph health check (read-only integrity gate)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 4.5 - Graph health check (read-only integrity gate)", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_5_label_communities", "label": "Step 5 - Label communities", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 5 - Label communities", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 6 - Generate Obsidian vault (opt-in) + HTML", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 9 - Save manifest, update cost tracker, clean up, and report", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", "label": "Interpreter guard for subcommands", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Interpreter guard for subcommands", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_for_update_and_cluster_only", "label": "For --update and --cluster-only", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For --update and --cluster-only", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_for_graphify_query", "label": "For /graphify query", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify query", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_for_graphify_add_and_watch", "label": "For /graphify add and --watch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify add and --watch", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", "label": "For the commit hook and native CLAUDE.md integration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For the commit hook and native CLAUDE.md integration", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_troubleshooting", "label": "Troubleshooting", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Troubleshooting", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 2}, {"id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", "label": "PowerShell 5.1: Vertical scrolling stops working", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PowerShell 5.1: Vertical scrolling stops working", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "antigravity_workflows_graphify_honesty_rules", "label": "Honesty Rules", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Honesty Rules", "community": 41, "community_name": "What You Must Do When Invoked", "source_file": ".antigravity/workflows/graphify.md", "file_type": "document", "degree": 1}, {"id": "claude_claude", "label": ".claude/CLAUDE.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".claude/CLAUDE.md", "community": 246, "community_name": ".claude/CLAUDE.md", "source_file": ".claude/CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_claude_graphify", "label": "graphify", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 246, "community_name": ".claude/CLAUDE.md", "source_file": ".claude/CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill", "label": "SKILL.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SKILL.md", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_graphify", "label": "/graphify", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "/graphify", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 11}, {"id": "claude_skills_graphify_skill_usage", "label": "Usage", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Usage", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_what_graphify_is_for", "label": "What graphify is for", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What graphify is for", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "label": "What You Must Do When Invoked", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.3, "font": {"size": 0, "color": "#ffffff"}, "title": "What You Must Do When Invoked", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 12}, {"id": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", "label": "Step 1 - Ensure graphify is installed", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 1 - Ensure graphify is installed", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_2_detect_files", "label": "Step 2 - Detect files", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2 - Detect files", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", "label": "Step 2.5 - Video and audio (only if video files detected)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2.5 - Video and audio (only if video files detected)", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", "label": "Step 3 - Extract entities and relationships", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 3 - Extract entities and relationships", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 4}, {"id": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", "label": "Part A - Structural extraction for code files", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Part A - Structural extraction for code files", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", "label": "Part B - Semantic extraction (parallel subagents)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Part B - Semantic extraction (parallel subagents)", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", "label": "Part C - Merge AST + semantic into final extraction", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Part C - Merge AST + semantic into final extraction", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", "label": "Step 4 - Build graph, cluster, analyze, generate outputs", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 4 - Build graph, cluster, analyze, generate outputs", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", "label": "Step 4.5 - Graph health check (read-only integrity gate)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 4.5 - Graph health check (read-only integrity gate)", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_5_label_communities", "label": "Step 5 - Label communities", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 5 - Label communities", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 6 - Generate Obsidian vault (opt-in) + HTML", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 9 - Save manifest, update cost tracker, clean up, and report", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", "label": "Interpreter guard for subcommands", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Interpreter guard for subcommands", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_for_update_and_cluster_only", "label": "For --update and --cluster-only", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For --update and --cluster-only", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_for_graphify_query", "label": "For /graphify query", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify query", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_for_graphify_add_and_watch", "label": "For /graphify add and --watch", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify add and --watch", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", "label": "For the commit hook and native CLAUDE.md integration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For the commit hook and native CLAUDE.md integration", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_troubleshooting", "label": "Troubleshooting", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Troubleshooting", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 2}, {"id": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", "label": "PowerShell 5.1: Vertical scrolling stops working", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PowerShell 5.1: Vertical scrolling stops working", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_skill_honesty_rules", "label": "Honesty Rules", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Honesty Rules", "community": 45, "community_name": "What You Must Do When Invoked", "source_file": ".claude/skills/graphify/SKILL.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_add_watch", "label": "add-watch.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "add-watch.md", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", "source_file": ".claude/skills/graphify/references/add-watch.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", "label": "graphify reference: add a URL and watch a folder", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: add a URL and watch a folder", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", "source_file": ".claude/skills/graphify/references/add-watch.md", "file_type": "document", "degree": 3}, {"id": "claude_skills_graphify_references_add_watch_for_graphify_add", "label": "For /graphify add", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify add", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", "source_file": ".claude/skills/graphify/references/add-watch.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_add_watch_for_watch", "label": "For --watch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For --watch", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", "source_file": ".claude/skills/graphify/references/add-watch.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports", "label": "exports.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "exports.md", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "label": "graphify reference: extra exports and benchmark", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: extra exports and benchmark", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 8}, {"id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", "label": "Step 6b - Wiki (only if --wiki flag)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 6b - Wiki (only if --wiki flag)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", "label": "Step 7b - SVG export (only if --svg flag)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 7b - SVG export (only if --svg flag)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", "label": "Step 7c - GraphML export (only if --graphml flag)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 7c - GraphML export (only if --graphml flag)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", "label": "Step 7d - MCP server (only if --mcp flag)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 7d - MCP server (only if --mcp flag)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 8 - Token reduction benchmark (only if total_words > 5000)", "community": 135, "community_name": "graphify reference: extra exports and benchmark", "source_file": ".claude/skills/graphify/references/exports.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_extraction_spec", "label": "extraction-spec.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "extraction-spec.md", "community": 247, "community_name": "extraction-spec.md", "source_file": ".claude/skills/graphify/references/extraction-spec.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", "label": "graphify reference: extraction subagent prompt", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: extraction subagent prompt", "community": 247, "community_name": "extraction-spec.md", "source_file": ".claude/skills/graphify/references/extraction-spec.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_github_and_merge", "label": "github-and-merge.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "github-and-merge.md", "community": 208, "community_name": "graphify reference: GitHub clone and cross-repo merge", "source_file": ".claude/skills/graphify/references/github-and-merge.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", "label": "graphify reference: GitHub clone and cross-repo merge", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: GitHub clone and cross-repo merge", "community": 208, "community_name": "graphify reference: GitHub clone and cross-repo merge", "source_file": ".claude/skills/graphify/references/github-and-merge.md", "file_type": "document", "degree": 2}, {"id": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given", "label": "Step 0 - Clone GitHub repo(s) (only if a GitHub URL was given)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 0 - Clone GitHub repo(s) (only if a GitHub URL was given)", "community": 208, "community_name": "graphify reference: GitHub clone and cross-repo merge", "source_file": ".claude/skills/graphify/references/github-and-merge.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_hooks", "label": "hooks.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hooks.md", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "source_file": ".claude/skills/graphify/references/hooks.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", "label": "graphify reference: commit hook and native CLAUDE.md integration", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: commit hook and native CLAUDE.md integration", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "source_file": ".claude/skills/graphify/references/hooks.md", "file_type": "document", "degree": 3}, {"id": "claude_skills_graphify_references_hooks_for_git_commit_hook", "label": "For git commit hook", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For git commit hook", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "source_file": ".claude/skills/graphify/references/hooks.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", "label": "For native CLAUDE.md integration", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For native CLAUDE.md integration", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", "source_file": ".claude/skills/graphify/references/hooks.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_query", "label": "query.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "query.md", "community": 163, "community_name": "graphify reference: query, path, explain", "source_file": ".claude/skills/graphify/references/query.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "label": "graphify reference: query, path, explain", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: query, path, explain", "community": 163, "community_name": "graphify reference: query, path, explain", "source_file": ".claude/skills/graphify/references/query.md", "file_type": "document", "degree": 5}, {"id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", "community": 163, "community_name": "graphify reference: query, path, explain", "source_file": ".claude/skills/graphify/references/query.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_query_step_1_traversal", "label": "Step 1 \u2014 Traversal", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 1 \u2014 Traversal", "community": 163, "community_name": "graphify reference: query, path, explain", "source_file": ".claude/skills/graphify/references/query.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_query_for_graphify_path", "label": "For /graphify path", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify path", "community": 163, "community_name": "graphify reference: query, path, explain", "source_file": ".claude/skills/graphify/references/query.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_query_for_graphify_explain", "label": "For /graphify explain", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For /graphify explain", "community": 163, "community_name": "graphify reference: query, path, explain", "source_file": ".claude/skills/graphify/references/query.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_transcribe", "label": "transcribe.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "transcribe.md", "community": 209, "community_name": "graphify reference: transcribe video and audio", "source_file": ".claude/skills/graphify/references/transcribe.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", "label": "graphify reference: transcribe video and audio", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: transcribe video and audio", "community": 209, "community_name": "graphify reference: transcribe video and audio", "source_file": ".claude/skills/graphify/references/transcribe.md", "file_type": "document", "degree": 2}, {"id": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", "label": "Step 2.5 - Transcribe video / audio files (only if video files detected)", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Step 2.5 - Transcribe video / audio files (only if video files detected)", "community": 209, "community_name": "graphify reference: transcribe video and audio", "source_file": ".claude/skills/graphify/references/transcribe.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_update", "label": "update.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update.md", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", "source_file": ".claude/skills/graphify/references/update.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", "label": "graphify reference: incremental update and cluster-only", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify reference: incremental update and cluster-only", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", "source_file": ".claude/skills/graphify/references/update.md", "file_type": "document", "degree": 3}, {"id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", "label": "For --update (incremental re-extraction)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For --update (incremental re-extraction)", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", "source_file": ".claude/skills/graphify/references/update.md", "file_type": "document", "degree": 1}, {"id": "claude_skills_graphify_references_update_for_cluster_only", "label": "For --cluster-only", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "For --cluster-only", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", "source_file": ".claude/skills/graphify/references/update.md", "file_type": "document", "degree": 1}, {"id": "agents", "label": "AGENTS.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md", "community": 227, "community_name": "AGENTS.md", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_graphify", "label": "graphify", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 227, "community_name": "AGENTS.md", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "claude", "label": "CLAUDE.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CLAUDE.md", "community": 245, "community_name": "CLAUDE.md", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "claude_graphify", "label": "graphify", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 245, "community_name": "CLAUDE.md", "source_file": "CLAUDE.md", "file_type": "document", "degree": 1}, {"id": "backend_readme", "label": "backend/README.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.5, "font": {"size": 0, "color": "#ffffff"}, "title": "backend/README.md", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 9}, {"id": "backend_readme_description", "label": "Description", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Description", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_project_setup", "label": "Project setup", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Project setup", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_compile_and_run_the_project", "label": "Compile and run the project", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Compile and run the project", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_run_tests", "label": "Run tests", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Run tests", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_deployment", "label": "Deployment", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Deployment", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_resources", "label": "Resources", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Resources", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_support", "label": "Support", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Support", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_stay_in_touch", "label": "Stay in touch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Stay in touch", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "backend_readme_license", "label": "License", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "License", "community": 121, "community_name": "backend/README.md", "source_file": "backend/README.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment", "label": "04-setup-and-deployment.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "04-setup-and-deployment.md", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 2}, {"id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 4}, {"id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 4}, {"id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 4}, {"id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 3}, {"id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 2}, {"id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/04-setup-and-deployment.md", "file_type": "document", "degree": 1}, {"id": "docs_05_devops_and_monitoring", "label": "05-devops-and-monitoring.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "05-devops-and-monitoring.md", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/05-devops-and-monitoring.md", "file_type": "document", "degree": 2}, {"id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/05-devops-and-monitoring.md", "file_type": "document", "degree": 5}, {"id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/05-devops-and-monitoring.md", "file_type": "document", "degree": 1}, {"id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/05-devops-and-monitoring.md", "file_type": "document", "degree": 1}, {"id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/05-devops-and-monitoring.md", "file_type": "document", "degree": 1}, {"id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/05-devops-and-monitoring.md", "file_type": "document", "degree": 1}, {"id": "docs_06_testing", "label": "06-testing.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "06-testing.md", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 2}, {"id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 6}, {"id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 1}, {"id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 1}, {"id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 1}, {"id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 1}, {"id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/06-testing.md", "file_type": "document", "degree": 1}, {"id": "docs_readme", "label": "docs/README.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "docs/README.md", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/README.md", "file_type": "document", "degree": 4}, {"id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", "community": 37, "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "source_file": "docs/README.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map", "label": "00-repository-map.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "00-repository-map.md", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_repository_map", "label": "Repository Map", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository Map", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_00_repository_map_repository_structure_overview", "label": "Repository Structure & Overview", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Repository Structure & Overview", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", "label": "Active Applications & Non-Auditable Scopes", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Active Applications & Non-Auditable Scopes", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", "label": "1. Active Customer Storefront: React 19 + Vite Application", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Active Customer Storefront: React 19 + Vite Application", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", "label": "2. Active Backend Service: NestJS Application", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Active Backend Service: NestJS Application", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", "label": "3. Excluded Placeholder / Non-Auditable Directories", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Excluded Placeholder / Non-Auditable Directories", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", "label": "Mandatory Global Audit Exclusions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Mandatory Global Audit Exclusions", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_important_configuration_infrastructure_files", "label": "Important Configuration & Infrastructure Files", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Important Configuration & Infrastructure Files", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_00_repository_map_documentation_governance", "label": "Documentation Governance", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Documentation Governance", "community": 124, "community_name": "Repository Map", "source_file": "docs/audit/00-repository-map.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_01_system_discovery", "label": "01-system-discovery.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "01-system-discovery.md", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_01_system_discovery_system_discovery", "label": "System Discovery", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "System Discovery", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 5}, {"id": "docs_audit_01_system_discovery_current_architecture", "label": "Current Architecture", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Current Architecture", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_01_system_discovery_active_core_applications", "label": "Active Core Applications", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Active Core Applications", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", "label": "Excluded / Non-Auditable Artifacts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Excluded / Non-Auditable Artifacts", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_01_system_discovery_major_business_domains_discovered", "label": "Major Business Domains Discovered", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Major Business Domains Discovered", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_01_system_discovery_technical_architecture_summary", "label": "Technical Architecture Summary", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Architecture Summary", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_01_system_discovery_evidence_based_status_matrix", "label": "Evidence-Based Status Matrix", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence-Based Status Matrix", "community": 146, "community_name": "System Discovery", "source_file": "docs/audit/01-system-discovery.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan", "label": "02-audit-plan.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "02-audit-plan.md", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "label": "Audit Plan & Subagent Roles", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Audit Plan & Subagent Roles", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 5}, {"id": "docs_audit_02_audit_plan_subagent_execution_mode", "label": "Subagent Execution Mode", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Subagent Execution Mode", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", "label": "Mandatory Global Audit Exclusions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Mandatory Global Audit Exclusions", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "label": "Reconciled Audit Roles & Assignments", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Reconciled Audit Roles & Assignments", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 11}, {"id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", "label": "1. Lead Architect / Orchestrator", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Lead Architect / Orchestrator", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", "label": "2. React / Vite Storefront Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. React / Vite Storefront Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", "label": "3. NestJS Backend Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. NestJS Backend Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_4_admin_features_auditor", "label": "4. Admin Features Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Admin Features Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", "label": "5. Database & Data Integrity Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Database & Data Integrity Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_6_security_auditor", "label": "6. Security Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Security Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", "label": "7. TypeScript & Code Quality Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. TypeScript & Code Quality Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_8_testing_reliability_auditor", "label": "8. Testing & Reliability Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Testing & Reliability Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", "label": "9. DevOps & CI/CD Auditor", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. DevOps & CI/CD Auditor", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_10_documentation_engineer", "label": "10. Documentation Engineer", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. Documentation Engineer", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", "label": "Strategy for Deduplication & Consolidation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Strategy for Deduplication & Consolidation", "community": 91, "community_name": "Reconciled Audit Roles & Assignments", "source_file": "docs/audit/02-audit-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_03_baseline_command_plan", "label": "03-baseline-command-plan.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "03-baseline-command-plan.md", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", "label": "Baseline Command Plan & Reconciled Command History", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Baseline Command Plan & Reconciled Command History", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", "label": "Attempted Command Execution Log", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Attempted Command Execution Log", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", "label": "Package Scripts Safety Analysis", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Package Scripts Safety Analysis", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_03_baseline_command_plan_root_package_json_scripts", "label": "Root `package.json` Scripts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root `package.json` Scripts", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", "label": "Backend `backend/package.json` Scripts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend `backend/package.json` Scripts", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", "label": "Permitted Safe Checks for Phase 2", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Permitted Safe Checks for Phase 2", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", "source_file": "docs/audit/03-baseline-command-plan.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_04_open_questions", "label": "04-open-questions.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "04-open-questions.md", "community": 164, "community_name": "Open Questions", "source_file": "docs/audit/04-open-questions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_04_open_questions_open_questions", "label": "Open Questions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Open Questions", "community": 164, "community_name": "Open Questions", "source_file": "docs/audit/04-open-questions.md", "file_type": "document", "degree": 5}, {"id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", "label": "1. Storefront Migration Roadmap (`frontend/application`)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Storefront Migration Roadmap (`frontend/application`)", "community": 164, "community_name": "Open Questions", "source_file": "docs/audit/04-open-questions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", "label": "2. Payment Gateway Integration Provider", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Payment Gateway Integration Provider", "community": 164, "community_name": "Open Questions", "source_file": "docs/audit/04-open-questions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", "label": "3. Deployment & CI/CD Pipeline Specifications", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Deployment & CI/CD Pipeline Specifications", "community": 164, "community_name": "Open Questions", "source_file": "docs/audit/04-open-questions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_04_open_questions_4_sms_otp_service_provider", "label": "4. SMS / OTP Service Provider", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. SMS / OTP Service Provider", "community": 164, "community_name": "Open Questions", "source_file": "docs/audit/04-open-questions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit", "label": "06-storefront-audit.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "06-storefront-audit.md", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "label": "React / Vite Storefront Audit Report", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "React / Vite Storefront Audit Report", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", "label": "Architecture Overview & Confirmed Strengths", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Architecture Overview & Confirmed Strengths", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_findings", "label": "Findings", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_fe_001", "label": "FE-001", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "FE-001", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_06_storefront_audit_title", "label": "Title", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_domain", "label": "Domain", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_category", "label": "Category", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_severity", "label": "Severity", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_confidence", "label": "Confidence", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_status", "label": "Status", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_affected_application", "label": "Affected Application", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_affected_files", "label": "Affected Files", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_evidence", "label": "Evidence", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_problem", "label": "Problem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_root_cause", "label": "Root Cause", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_dependencies", "label": "Dependencies", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_risks", "label": "Risks", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_06_storefront_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 25, "community_name": "FE-001", "source_file": "docs/audit/06-storefront-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit", "label": "07-backend-audit.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "07-backend-audit.md", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "label": "NestJS Backend Audit Report", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NestJS Backend Audit Report", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 7}, {"id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_findings", "label": "Findings", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_be_001", "label": "BE-001", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "BE-001", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_07_backend_audit_title", "label": "Title", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_domain", "label": "Domain", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_category", "label": "Category", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_severity", "label": "Severity", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_confidence", "label": "Confidence", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_status", "label": "Status", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_affected_application", "label": "Affected Application", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_affected_files", "label": "Affected Files", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_evidence", "label": "Evidence", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_problem", "label": "Problem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_root_cause", "label": "Root Cause", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_dependencies", "label": "Dependencies", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_risks", "label": "Risks", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_07_backend_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 24, "community_name": "BE-001", "source_file": "docs/audit/07-backend-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit", "label": "08-admin-features-audit.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "08-admin-features-audit.md", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_admin_features_audit_report", "label": "Admin Features Audit Report", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Admin Features Audit Report", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_findings", "label": "Findings", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_adm_001", "label": "ADM-001", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "ADM-001", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_08_admin_features_audit_title", "label": "Title", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_domain", "label": "Domain", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_category", "label": "Category", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_severity", "label": "Severity", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_confidence", "label": "Confidence", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_status", "label": "Status", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_affected_application", "label": "Affected Application", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_affected_files", "label": "Affected Files", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_evidence", "label": "Evidence", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_problem", "label": "Problem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_root_cause", "label": "Root Cause", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_dependencies", "label": "Dependencies", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_risks", "label": "Risks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_08_admin_features_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 26, "community_name": "ADM-001", "source_file": "docs/audit/08-admin-features-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit", "label": "09-database-audit.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "09-database-audit.md", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "label": "Database and Data Integrity Audit Report", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Database and Data Integrity Audit Report", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_findings", "label": "Findings", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_db_001", "label": "DB-001", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "DB-001", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_09_database_audit_title", "label": "Title", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_domain", "label": "Domain", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_category", "label": "Category", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_severity", "label": "Severity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_confidence", "label": "Confidence", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_status", "label": "Status", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_affected_application", "label": "Affected Application", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_affected_files", "label": "Affected Files", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_evidence", "label": "Evidence", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_problem", "label": "Problem", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_root_cause", "label": "Root Cause", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_dependencies", "label": "Dependencies", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_risks", "label": "Risks", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_09_database_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 27, "community_name": "DB-001", "source_file": "docs/audit/09-database-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit", "label": "11-code-quality-audit.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "11-code-quality-audit.md", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "label": "TypeScript and Code Quality Audit Report", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "TypeScript and Code Quality Audit Report", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_findings", "label": "Findings", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_ts_001", "label": "TS-001", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "TS-001", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_11_code_quality_audit_title", "label": "Title", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_domain", "label": "Domain", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_category", "label": "Category", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_severity", "label": "Severity", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_confidence", "label": "Confidence", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_status", "label": "Status", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_affected_application", "label": "Affected Application", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_affected_files", "label": "Affected Files", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_evidence", "label": "Evidence", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_problem", "label": "Problem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_root_cause", "label": "Root Cause", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_dependencies", "label": "Dependencies", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_risks", "label": "Risks", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_11_code_quality_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 28, "community_name": "TS-001", "source_file": "docs/audit/11-code-quality-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit", "label": "12-testing-audit.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12-testing-audit.md", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "label": "Testing and Reliability Audit Report", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing and Reliability Audit Report", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_findings", "label": "Findings", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_test_001", "label": "TEST-001", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "TEST-001", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_12_testing_audit_title", "label": "Title", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_domain", "label": "Domain", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_category", "label": "Category", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_severity", "label": "Severity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_confidence", "label": "Confidence", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_status", "label": "Status", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_affected_application", "label": "Affected Application", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_affected_files", "label": "Affected Files", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_evidence", "label": "Evidence", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_problem", "label": "Problem", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_root_cause", "label": "Root Cause", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_dependencies", "label": "Dependencies", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_risks", "label": "Risks", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_12_testing_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 29, "community_name": "TEST-001", "source_file": "docs/audit/12-testing-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit", "label": "13-devops-audit.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "13-devops-audit.md", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "label": "DevOps and CI/CD Audit Report", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "DevOps and CI/CD Audit Report", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_findings", "label": "Findings", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_devops_001", "label": "DEVOPS-001", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "DEVOPS-001", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_13_devops_audit_title", "label": "Title", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_domain", "label": "Domain", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_category", "label": "Category", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_severity", "label": "Severity", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_confidence", "label": "Confidence", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_status", "label": "Status", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_affected_application", "label": "Affected Application", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_affected_files", "label": "Affected Files", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_evidence", "label": "Evidence", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_problem", "label": "Problem", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_root_cause", "label": "Root Cause", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_dependencies", "label": "Dependencies", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_risks", "label": "Risks", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_13_devops_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 30, "community_name": "DEVOPS-001", "source_file": "docs/audit/13-devops-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit", "label": "14-documentation-audit.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "14-documentation-audit.md", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_documentation_audit_report", "label": "Documentation Audit Report", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Documentation Audit Report", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", "label": "Domain Overview & Confirmed Strengths", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain Overview & Confirmed Strengths", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_findings", "label": "Findings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Findings", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_doc_001", "label": "DOC-001", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.2, "font": {"size": 12, "color": "#ffffff"}, "title": "DOC-001", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 26}, {"id": "docs_audit_14_documentation_audit_title", "label": "Title", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Title", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_domain", "label": "Domain", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Domain", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_category", "label": "Category", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_severity", "label": "Severity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Severity", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_confidence", "label": "Confidence", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Confidence", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_status", "label": "Status", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Status", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_affected_application", "label": "Affected Application", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Application", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_affected_files", "label": "Affected Files", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Affected Files", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", "label": "Relevant Symbols or Lines", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Relevant Symbols or Lines", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_evidence", "label": "Evidence", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Evidence", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_problem", "label": "Problem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Problem", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_root_cause", "label": "Root Cause", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Root Cause", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_why_it_matters", "label": "Why It Matters", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Why It Matters", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_user_or_business_impact", "label": "User or Business Impact", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User or Business Impact", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_technical_impact", "label": "Technical Impact", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Technical Impact", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", "label": "Security or Data-Integrity Impact", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security or Data-Integrity Impact", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_recommended_direction", "label": "Recommended Direction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Recommended Direction", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_alternative_direction", "label": "Alternative Direction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Alternative Direction", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_implementation_complexity", "label": "Implementation Complexity", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Implementation Complexity", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_dependencies", "label": "Dependencies", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_risks", "label": "Risks", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Risks", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_verification_requirements", "label": "Verification Requirements", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Verification Requirements", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_testing_requirements", "label": "Testing Requirements", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Testing Requirements", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_acceptance_criteria", "label": "Acceptance Criteria", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Acceptance Criteria", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_notes_and_limitations", "label": "Notes and Limitations", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Notes and Limitations", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_finding_summary", "label": "Finding Summary", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Summary", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_14_documentation_audit_completion_statement", "label": "Completion Statement", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Completion Statement", "community": 31, "community_name": "DOC-001", "source_file": "docs/audit/14-documentation-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary", "label": "16-deep-audit-summary.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "16-deep-audit-summary.md", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "label": "Deep Audit Summary Report", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Deep Audit Summary Report", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 7}, {"id": "docs_audit_16_deep_audit_summary_1_audit_overview", "label": "1. Audit Overview", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Audit Overview", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_2_findings_metrics", "label": "2. Findings Metrics", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Findings Metrics", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_16_deep_audit_summary_by_severity", "label": "By Severity", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Severity", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_by_confidence", "label": "By Confidence", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Confidence", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_by_domain", "label": "By Domain", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Domain", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", "label": "3. Inspected Scope & Command Log", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Inspected Scope & Command Log", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_16_deep_audit_summary_inspected_scopes", "label": "Inspected Scopes", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Inspected Scopes", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_executed_commands_results", "label": "Executed Commands & Results", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Executed Commands & Results", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", "label": "Blocked Commands & Reasons", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Blocked Commands & Reasons", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", "label": "4. Key Business & Integration Questions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Key Business & Integration Questions", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", "label": "5. Audit Limitations & Integrity Confirmation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Audit Limitations & Integrity Confirmation", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", "label": "6. Exact Next Recommended Phase", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Exact Next Recommended Phase", "community": 100, "community_name": "Deep Audit Summary Report", "source_file": "docs/audit/16-deep-audit-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_18_compiler_diagnostic_dispositions", "label": "18-compiler-diagnostic-dispositions.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "18-compiler-diagnostic-dispositions.md", "community": 210, "community_name": "Compiler Diagnostic Dispositions", "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", "label": "Compiler Diagnostic Dispositions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Compiler Diagnostic Dispositions", "community": 210, "community_name": "Compiler Diagnostic Dispositions", "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "file_type": "document", "degree": 2}, {"id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", "label": "Reconciled Compiler Diagnostic Table", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Reconciled Compiler Diagnostic Table", "community": 210, "community_name": "Compiler Diagnostic Dispositions", "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_19_finding_verification_report", "label": "19-finding-verification-report.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "19-finding-verification-report.md", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", "source_file": "docs/audit/19-finding-verification-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", "label": "Raw Finding Verification & Disposition Report", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Raw Finding Verification & Disposition Report", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", "source_file": "docs/audit/19-finding-verification-report.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", "label": "1. Executive Summary & Verification Reconciliation Table", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Executive Summary & Verification Reconciliation Table", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", "source_file": "docs/audit/19-finding-verification-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", "label": "2. Newly Discovered & Split Findings (Canonical IDs)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Newly Discovered & Split Findings (Canonical IDs)", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", "source_file": "docs/audit/19-finding-verification-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary", "label": "21-phase2-quality-gate-summary.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "21-phase2-quality-gate-summary.md", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "label": "Phase 2 Final Quality Gate Summary Report", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2 Final Quality Gate Summary Report", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 6}, {"id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", "label": "1. Executive Summary", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Executive Summary", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", "label": "2. Final Verified Finding Breakdown", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Final Verified Finding Breakdown", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_21_phase2_quality_gate_summary_by_severity", "label": "By Severity", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Severity", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary_by_confidence", "label": "By Confidence", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Confidence", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", "label": "3. Source Coverage & Diagnostic Metrics", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Source Coverage & Diagnostic Metrics", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", "label": "4. Integrity Check & Quality Gate Status", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Integrity Check & Quality Gate Status", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", "label": "5. Exact Next Recommended Phase", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Exact Next Recommended Phase", "community": 136, "community_name": "Phase 2 Final Quality Gate Summary Report", "source_file": "docs/audit/21-phase2-quality-gate-summary.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_24_omitted_file_inspection_report", "label": "24-omitted-file-inspection-report.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "24-omitted-file-inspection-report.md", "community": 171, "community_name": "Omitted File Inspection Report", "source_file": "docs/audit/24-omitted-file-inspection-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", "label": "Omitted File Inspection Report", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Omitted File Inspection Report", "community": 171, "community_name": "Omitted File Inspection Report", "source_file": "docs/audit/24-omitted-file-inspection-report.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", "label": "Overview of Omitted File Inspections", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Overview of Omitted File Inspections", "community": 171, "community_name": "Omitted File Inspection Report", "source_file": "docs/audit/24-omitted-file-inspection-report.md", "file_type": "document", "degree": 2}, {"id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", "label": "Key Domain Findings from Omitted File Audit", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Key Domain Findings from Omitted File Audit", "community": 171, "community_name": "Omitted File Inspection Report", "source_file": "docs/audit/24-omitted-file-inspection-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_24_omitted_file_inspection_report_conclusion", "label": "Conclusion", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Conclusion", "community": 171, "community_name": "Omitted File Inspection Report", "source_file": "docs/audit/24-omitted-file-inspection-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report", "label": "26-phase2-integrity-repair-report.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "26-phase2-integrity-repair-report.md", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", "label": "Phase 2.6 Integrity Repair & Audit Quality Gate Report", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 2.6 Integrity Repair & Audit Quality Gate Report", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 5}, {"id": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", "label": "1. Summary of Integrity Repairs Performed", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Summary of Integrity Repairs Performed", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 5}, {"id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", "label": "1.1 Authoritative Source File Inventory Rebuilt", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1 Authoritative Source File Inventory Rebuilt", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", "label": "1.2 Raw Finding Dispositions Reconciled", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2 Raw Finding Dispositions Reconciled", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", "label": "1.3 Finding Identifier Normalization", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3 Finding Identifier Normalization", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", "label": "1.4 Rejected Finding Cleanup", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4 Rejected Finding Cleanup", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", "label": "2. Final Verified Finding Metrics", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Final Verified Finding Metrics", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_26_phase2_integrity_repair_report_by_severity", "label": "By Severity", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Severity", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_by_confidence", "label": "By Confidence", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "By Confidence", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", "label": "3. Reference and Compiler Integrity Results", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Reference and Compiler Integrity Results", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", "label": "4. Quality Gate Conclusion", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Quality Gate Conclusion", "community": 109, "community_name": "1. Summary of Integrity Repairs Performed", "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure", "label": "31-module-audit-closure.md", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "31-module-audit-closure.md", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_module_audit_closure_report", "label": "Module Audit Closure Report", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Module Audit Closure Report", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 3}, {"id": "docs_audit_31_module_audit_closure_required_review_group_closures", "label": "Required Review Group Closures", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Required Review Group Closures", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 17}, {"id": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", "label": "1. Storefront Shell & Routing", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Storefront Shell & Routing", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", "label": "2. Authentication UI, Stores & API Clients", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Authentication UI, Stores & API Clients", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", "label": "3. Cart, Checkout, Order, Wallet & Payment UI", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Cart, Checkout, Order, Wallet & Payment UI", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", "label": "4. Product, Pet, Scientific Term & Settings UI", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Product, Pet, Scientific Term & Settings UI", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", "label": "5. NestJS Bootstrap & Shared Infrastructure", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. NestJS Bootstrap & Shared Infrastructure", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", "label": "6. Authentication & Authorization Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Authentication & Authorization Backend", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_7_users_addresses_backend", "label": "7. Users & Addresses Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Users & Addresses Backend", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_8_pets_backend", "label": "8. Pets Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Pets Backend", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_9_products_backend", "label": "9. Products Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. Products Backend", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_10_orders_backend", "label": "10. Orders Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. Orders Backend", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", "label": "11. Settings & Administrative Backend", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "11. Settings & Administrative Backend", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", "label": "12. Prisma Schema, Migrations & Seed", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12. Prisma Schema, Migrations & Seed", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", "label": "13. Redis & Temporary Auth State", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "13. Redis & Temporary Auth State", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", "label": "14. Unit & E2E Tests", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "14. Unit & E2E Tests", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", "label": "15. Docker, NGINX, Prometheus & Deployment Config", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "15. Docker, NGINX, Prometheus & Deployment Config", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", "label": "16. Documentation & OpenAPI Artifacts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "16. Documentation & OpenAPI Artifacts", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_31_module_audit_closure_conclusion", "label": "Conclusion", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Conclusion", "community": 69, "community_name": "Required Review Group Closures", "source_file": "docs/audit/31-module-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_33_final_phase2_audit_closure", "label": "33-final-phase2-audit-closure.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "33-final-phase2-audit-closure.md", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", "source_file": "docs/audit/33-final-phase2-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "label": "Final Phase 2 Audit Closure Report", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Final Phase 2 Audit Closure Report", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", "source_file": "docs/audit/33-final-phase2-audit-closure.md", "file_type": "document", "degree": 5}, {"id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", "label": "1. Executive Summary & Honest Review-Tier Metrics", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Executive Summary & Honest Review-Tier Metrics", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", "source_file": "docs/audit/33-final-phase2-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", "label": "2. Reconciled Findings & Canonical Identifier Normalization", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Reconciled Findings & Canonical Identifier Normalization", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", "source_file": "docs/audit/33-final-phase2-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", "label": "3. Validation & Integrity Verification", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Validation & Integrity Verification", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", "source_file": "docs/audit/33-final-phase2-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", "label": "4. Final Quality Gate Conclusion", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Final Quality Gate Conclusion", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", "source_file": "docs/audit/33-final-phase2-audit-closure.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_traceability_matrix", "label": "phase3-traceability-matrix.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "phase3-traceability-matrix.md", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", "source_file": "docs/audit/phase3-traceability-matrix.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "label": "Phase 3 Audit Traceability Matrix", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3 Audit Traceability Matrix", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", "source_file": "docs/audit/phase3-traceability-matrix.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", "label": "Complete Finding-to-Task Traceability Matrix", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Complete Finding-to-Task Traceability Matrix", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", "source_file": "docs/audit/phase3-traceability-matrix.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", "label": "Special Task Traceability (Non-Finding Tasks)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Special Task Traceability (Non-Finding Tasks)", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", "source_file": "docs/audit/phase3-traceability-matrix.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", "label": "Finding Disposition & Accounting Verification", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Finding Disposition & Accounting Verification", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", "source_file": "docs/audit/phase3-traceability-matrix.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review", "label": "phase3.1-backlog-review.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "phase3.1-backlog-review.md", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 14}, {"id": "docs_audit_phase3_1_backlog_review_1_executive_assessment", "label": "1. Executive Assessment", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Executive Assessment", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", "label": "2. Findings That Require No Change", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Findings That Require No Change", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", "label": "3. Findings Requiring Task Refinements", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Findings Requiring Task Refinements", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", "label": "4. Tasks Requiring Splitting", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. Tasks Requiring Splitting", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", "label": "5. Tasks Requiring Merging", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. Tasks Requiring Merging", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", "label": "6. Unsupported Assumptions Identified", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. Unsupported Assumptions Identified", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", "label": "7. Scope Creep Identified and Removed", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. Scope Creep Identified and Removed", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", "label": "8. Security Deep-Dive Review", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. Security Deep-Dive Review", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_9_architecture_review", "label": "9. Architecture Review", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. Architecture Review", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", "label": "10. Dependency & Wave Adjustments", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. Dependency & Wave Adjustments", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", "label": "11. Acceptance Criteria Refinements", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "11. Acceptance Criteria Refinements", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", "label": "12. Business and Product Decision Classification", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "12. Business and Product Decision Classification", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", "label": "13. Final Recommended Backlog Summary", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "13. Final Recommended Backlog Summary", "community": 94, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "source_file": "docs/audit/phase3.1-backlog-review.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log", "label": "phase3.1-change-log.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "phase3.1-change-log.md", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3.1 \u2014 Master Task Backlog Change Log", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 2}, {"id": "docs_audit_phase3_1_change_log_task_modifications_log", "label": "Task Modifications Log", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Task Modifications Log", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 7}, {"id": "docs_audit_phase3_1_change_log_1_task_auth_001", "label": "1. `TASK-AUTH-001`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. `TASK-AUTH-001`", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log_2_task_fin_001", "label": "2. `TASK-FIN-001`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. `TASK-FIN-001`", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log_3_decision_002", "label": "3. `DECISION-002`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. `DECISION-002`", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log_4_task_verify_001", "label": "4. `TASK-VERIFY-001`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. `TASK-VERIFY-001`", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. `TASK-SEC-001` & `TASK-SEC-002`", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", "label": "6. `TASK-BUILD-001` & Execution Waves", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. `TASK-BUILD-001` & Execution Waves", "community": 137, "community_name": "Task Modifications Log", "source_file": "docs/audit/phase3.1-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log", "label": "phase3.2-change-log.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "phase3.2-change-log.md", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", "label": "Phase 3.2 \u2014 Implementation Readiness Change Log", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3.2 \u2014 Implementation Readiness Change Log", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 2}, {"id": "docs_audit_phase3_2_change_log_comprehensive_change_log", "label": "Comprehensive Change Log", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Comprehensive Change Log", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 11}, {"id": "docs_audit_phase3_2_change_log_1_task_sec_001", "label": "1. `TASK-SEC-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. `TASK-SEC-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_2_task_sec_002", "label": "2. `TASK-SEC-002`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. `TASK-SEC-002`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_3_task_sec_003", "label": "3. `TASK-SEC-003`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. `TASK-SEC-003`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_4_task_fin_001", "label": "4. `TASK-FIN-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "4. `TASK-FIN-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_5_task_build_001", "label": "5. `TASK-BUILD-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "5. `TASK-BUILD-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_6_task_auth_001", "label": "6. `TASK-AUTH-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "6. `TASK-AUTH-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_7_task_fe_001", "label": "7. `TASK-FE-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "7. `TASK-FE-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_8_task_devops_001", "label": "8. `TASK-DEVOPS-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "8. `TASK-DEVOPS-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_9_task_doc_001", "label": "9. `TASK-DOC-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "9. `TASK-DOC-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_change_log_10_task_verify_001", "label": "10. `TASK-VERIFY-001`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "10. `TASK-VERIFY-001`", "community": 103, "community_name": "Comprehensive Change Log", "source_file": "docs/audit/phase3.2-change-log.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_implementation_readiness", "label": "phase3.2-implementation-readiness.md", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "phase3.2-implementation-readiness.md", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "source_file": "docs/audit/phase3.2-implementation-readiness.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", "label": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "source_file": "docs/audit/phase3.2-implementation-readiness.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", "label": "1. Executive Summary & Architecture Decisions", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "1. Executive Summary & Architecture Decisions", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "source_file": "docs/audit/phase3.2-implementation-readiness.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", "label": "2. Updated Task Specifications Overview", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "2. Updated Task Specifications Overview", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "source_file": "docs/audit/phase3.2-implementation-readiness.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", "label": "3. Final Readiness Statement", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "3. Final Readiness Statement", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "source_file": "docs/audit/phase3.2-implementation-readiness.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_readme", "label": "admin-panel/README.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/README.md", "community": 195, "community_name": "React + TypeScript + Vite", "source_file": "frontend/admin-panel/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_readme_react_typescript_vite", "label": "React + TypeScript + Vite", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "React + TypeScript + Vite", "community": 195, "community_name": "React + TypeScript + Vite", "source_file": "frontend/admin-panel/README.md", "file_type": "document", "degree": 3}, {"id": "frontend_admin_panel_readme_react_compiler", "label": "React Compiler", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "React Compiler", "community": 195, "community_name": "React + TypeScript + Vite", "source_file": "frontend/admin-panel/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_readme_expanding_the_eslint_configuration", "label": "Expanding the ESLint configuration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Expanding the ESLint configuration", "community": 195, "community_name": "React + TypeScript + Vite", "source_file": "frontend/admin-panel/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog", "label": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "community": 280, "community_name": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "file_type": "document", "degree": 0}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "label": "Sahel-Font", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sahel-Font", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 8}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", "label": "Known problems for variable version", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Known problems for variable version", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", "label": "To Do (variable)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "To Do (variable)", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", "label": "Install", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Install", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 2}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", "label": "Arch Linux", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Arch Linux", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", "label": "Contributors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Contributors", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", "label": "License", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "License", "community": 127, "community_name": "Sahel-Font", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog", "label": "shabnam-font-v5.0.1/CHANGELOG.md", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "shabnam-font-v5.0.1/CHANGELOG.md", "community": 281, "community_name": "shabnam-font-v5.0.1/CHANGELOG.md", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", "file_type": "document", "degree": 0}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", "label": "shabnam-font-v5.0.1/README.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "shabnam-font-v5.0.1/README.md", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", "label": "Shabnam Font", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 4}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample", "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", "label": "Install", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Install", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 5}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", "label": "bower", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "bower", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", "label": "npm", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "npm", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", "label": "yarn", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "yarn", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", "label": "Arch Linux", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Arch Linux", "community": 138, "community_name": "Install", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", "label": "vazirmatn-v33.003/CHANGELOG.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vazirmatn-v33.003/CHANGELOG.md", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "label": "Vazirmatn Changelog", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Changelog", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 10}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", "label": "33.003", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "33.003", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", "label": "33.002", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "33.002", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", "label": "33.001", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "33.001", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", "label": "33.000", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "33.000", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", "label": "32.102", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "32.102", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", "label": "32.101", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "32.101", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", "label": "32.1", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "32.1", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", "label": "32.0.0", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "32.0.0", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", "label": "Old Vazir Changelog", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Old Vazir Changelog", "community": 116, "community_name": "Vazirmatn Changelog", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", "label": "vazirmatn-v33.003/README.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "vazirmatn-v33.003/README.md", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.7, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 6}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", "label": "Install", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Install", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 5}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", "label": "Download", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Download", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", "label": "[npm](https://www.npmjs.com/package/vazirmatn)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[npm](https://www.npmjs.com/package/vazirmatn)", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", "label": "CDN", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CDN", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", "label": "Build", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Build", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", "label": "Thank you", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Thank you", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", "label": "License", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "License", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", "label": "Authors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Authors", "community": 117, "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_claude", "label": "application/CLAUDE.md", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "application/CLAUDE.md", "community": 284, "community_name": "application/CLAUDE.md", "source_file": "frontend/application/CLAUDE.md", "file_type": "document", "degree": 0}, {"id": "frontend_application_readme", "label": "application/README.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.8, "font": {"size": 0, "color": "#ffffff"}, "title": "application/README.md", "community": 200, "community_name": "application/README.md", "source_file": "frontend/application/README.md", "file_type": "document", "degree": 3}, {"id": "frontend_application_readme_getting_started", "label": "Getting Started", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Getting Started", "community": 200, "community_name": "application/README.md", "source_file": "frontend/application/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_readme_learn_more", "label": "Learn More", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Learn More", "community": 200, "community_name": "application/README.md", "source_file": "frontend/application/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_readme_deploy_on_vercel", "label": "Deploy on Vercel", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Deploy on Vercel", "community": 200, "community_name": "application/README.md", "source_file": "frontend/application/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog", "label": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "community": 285, "community_name": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "file_type": "document", "degree": 0}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", "label": "application/public/fonts/sahel-font-v3.4.0/README.md", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "application/public/fonts/sahel-font-v3.4.0/README.md", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "label": "Sahel-Font", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Sahel-Font", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 8}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", "label": "Known problems for variable version", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Known problems for variable version", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", "label": "To Do (variable)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "To Do (variable)", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", "label": "Install", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Install", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 2}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", "label": "Arch Linux", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Arch Linux", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", "label": "Contributors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Contributors", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", "label": "License", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "License", "community": 130, "community_name": "Sahel-Font", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", "degree": 1}, {"id": "manual_test_scenarios", "label": "manual-test-scenarios.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "manual-test-scenarios.md", "community": 156, "community_name": "manual-test-scenarios.md", "source_file": "manual-test-scenarios.md", "file_type": "document", "degree": 0}, {"id": "test_coverage_map", "label": "test-coverage-map.md", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "test-coverage-map.md", "community": 178, "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "source_file": "test-coverage-map.md", "file_type": "document", "degree": 1}, {"id": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", "label": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.4, "font": {"size": 0, "color": "#ffffff"}, "title": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "community": 178, "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "source_file": "test-coverage-map.md", "file_type": "document", "degree": 5}, {"id": "test_coverage_map_\u06f1_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u06cc_user_roles", "label": "\u06f1. \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc (User Roles)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f1. \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc (User Roles)", "community": 178, "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "source_file": "test-coverage-map.md", "file_type": "document", "degree": 1}, {"id": "test_coverage_map_\u06f2_\u0645\u0627\u062a\u0631\u06cc\u0633_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627_\u0648_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631_feature_flow_matrix", "label": "\u06f2. \u0645\u0627\u062a\u0631\u06cc\u0633 \u062c\u0631\u06cc\u0627\u0646\u200c\u0647\u0627 \u0648 \u0642\u0627\u0628\u0644\u06cc\u062a\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631 (Feature & Flow Matrix)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f2. \u0645\u0627\u062a\u0631\u06cc\u0633 \u062c\u0631\u06cc\u0627\u0646\u200c\u0647\u0627 \u0648 \u0642\u0627\u0628\u0644\u06cc\u062a\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631 (Feature & Flow Matrix)", "community": 178, "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "source_file": "test-coverage-map.md", "file_type": "document", "degree": 1}, {"id": "test_coverage_map_\u06f3_\u0648\u0636\u0639\u06cc\u062a_\u067e\u0648\u0634\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0633\u0648\u0626\u06cc\u062a_\u06f1\u06f1\u06af\u0627\u0646\u0647_final_11_test_suites_status", "label": "\u06f3. \u0648\u0636\u0639\u06cc\u062a \u067e\u0648\u0634\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0633\u0648\u0626\u06cc\u062a \u06f1\u06f1\u06af\u0627\u0646\u0647 (Final 11 Test Suites Status)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f3. \u0648\u0636\u0639\u06cc\u062a \u067e\u0648\u0634\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0633\u0648\u0626\u06cc\u062a \u06f1\u06f1\u06af\u0627\u0646\u0647 (Final 11 Test Suites Status)", "community": 178, "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "source_file": "test-coverage-map.md", "file_type": "document", "degree": 1}, {"id": "test_coverage_map_\u06f4_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u0646\u06af\u0647\u062f\u0627\u0631\u06cc_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0686\u0631\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u0634\u06a9\u0633\u062a\u0646_\u062a\u0633\u062a_\u0647\u0627_developer_maintenance_guide", "label": "\u06f4. \u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u0646\u06af\u0647\u062f\u0627\u0631\u06cc \u0648 \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0686\u0631\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f \u0628\u062f\u0648\u0646 \u0634\u06a9\u0633\u062a\u0646 \u062a\u0633\u062a\u200c\u0647\u0627 (Developer Maintenance Guide)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "\u06f4. \u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u0646\u06af\u0647\u062f\u0627\u0631\u06cc \u0648 \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0686\u0631\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f \u0628\u062f\u0648\u0646 \u0634\u06a9\u0633\u062a\u0646 \u062a\u0633\u062a\u200c\u0647\u0627 (Developer Maintenance Guide)", "community": 178, "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "source_file": "test-coverage-map.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_vazirmatn_v33_003_authors", "label": "Vazirmatn Authors", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Authors", "community": 170, "community_name": "Vazirmatn Font README", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt", "file_type": "document", "degree": 1}, {"id": "dejavu_sans", "label": "DejaVu Sans Font", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DejaVu Sans Font", "community": 170, "community_name": "Vazirmatn Font README", "source_file": "", "file_type": "concept", "degree": 1}, {"id": "roboto_font", "label": "Roboto Font", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Roboto Font", "community": 170, "community_name": "Vazirmatn Font README", "source_file": "", "file_type": "concept", "degree": 1}, {"id": "frontend_application_public_fonts_vazirmatn_v33_003_ofl", "label": "SIL Open Font License (OFL)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SIL Open Font License (OFL)", "community": 170, "community_name": "Vazirmatn Font README", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt", "file_type": "document", "degree": 1}, {"id": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "label": "Vazirmatn Font README", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Font README", "community": 170, "community_name": "Vazirmatn Font README", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 4}, {"id": "docs_audit_adr_auth_001", "label": "ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management", "community": 211, "community_name": "Master Task Backlog (Phase 3.3)", "source_file": "docs/audit/ADR-AUTH-001.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_master_task_backlog", "label": "Master Task Backlog (Phase 3.3)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Master Task Backlog (Phase 3.3)", "community": 211, "community_name": "Master Task Backlog (Phase 3.3)", "source_file": "docs/audit/MASTER-TASK-BACKLOG.md", "file_type": "document", "degree": 2}, {"id": "docs_audit_phase3_execution_plan", "label": "Phase 3 Master Execution Plan", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3 Master Execution Plan", "community": 211, "community_name": "Master Task Backlog (Phase 3.3)", "source_file": "docs/audit/phase3-execution-plan.md", "file_type": "document", "degree": 1}, {"id": "vazir_font", "label": "Vazir Font", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazir Font", "community": 226, "community_name": "Shabnam Font README", "source_file": "", "file_type": "concept", "degree": 1}, {"id": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", "label": "Shabnam Font README", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font README", "community": 226, "community_name": "Shabnam Font README", "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md", "file_type": "document", "degree": 2}, {"id": "frontend_application_public_fonts_shabnam_font_v5_0_1_sample", "label": "Shabnam Font Sample", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font Sample", "community": 226, "community_name": "Shabnam Font README", "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png", "file_type": "image", "degree": 1}, {"id": "docs_02_user_guide_roles", "label": "User Roles and Capabilities", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User Roles and Capabilities", "community": 244, "community_name": "User Profile Photo", "source_file": "docs/02-user-guide.md", "file_type": "document", "degree": 1}, {"id": "backend_uploads_1781288429353_508765350", "label": "User Profile Photo", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "User Profile Photo", "community": 244, "community_name": "User Profile Photo", "source_file": "backend/uploads/1781288429353-508765350.jpg", "file_type": "image", "degree": 1}, {"id": "database_schema_products", "label": "Products Table", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Products Table", "community": 248, "community_name": "Products Table", "source_file": "DATABASE_SCHEMA.md", "file_type": "code", "degree": 1}, {"id": "readme_smartadvisor", "label": "Smart Advisor Component", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Smart Advisor Component", "community": 248, "community_name": "Products Table", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "database_schema_users", "label": "Users Table", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Users Table", "community": 249, "community_name": "Users Table", "source_file": "DATABASE_SCHEMA.md", "file_type": "code", "degree": 1}, {"id": "docker_backend_prod", "label": "Backend Production Container", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend Production Container", "community": 249, "community_name": "Users Table", "source_file": "docker-compose.yml", "file_type": "code", "degree": 1}, {"id": "docs_audit_05_architectural_audit_findings", "label": "Architectural Audit Findings", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Architectural Audit Findings", "community": 250, "community_name": "Architectural Audit Findings", "source_file": "docs/audit/05-architectural-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_10_security_audit_findings", "label": "Security Audit Findings", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Security Audit Findings", "community": 250, "community_name": "Architectural Audit Findings", "source_file": "docs/audit/10-security-audit.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_cross_boundary_dependencies", "label": "Cross Boundary Dependencies & Backend Architecture Specification", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Cross Boundary Dependencies & Backend Architecture Specification", "community": 251, "community_name": "Cross Boundary Dependencies & Backend Architecture Specification", "source_file": "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_frontend_integration_requirements", "label": "Comprehensive Frontend Integration Requirements & API Contract", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Comprehensive Frontend Integration Requirements & API Contract", "community": 251, "community_name": "Cross Boundary Dependencies & Backend Architecture Specification", "source_file": "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md", "file_type": "document", "degree": 1}, {"id": "frontend_application_agents", "label": "Next.js Agent Rules & Brand Guidelines", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Next.js Agent Rules & Brand Guidelines", "community": 252, "community_name": "Next.js Agent Rules & Brand Guidelines", "source_file": "frontend/application/AGENTS.md", "file_type": "document", "degree": 1}, {"id": "image_pharma_lab", "label": "Pharma Quality Lab Image", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Pharma Quality Lab Image", "community": 252, "community_name": "Next.js Agent Rules & Brand Guidelines", "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", "file_type": "image", "degree": 1}, {"id": "backend_integration_login", "label": "User Login API", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "User Login API", "community": 261, "community_name": "User Login API", "source_file": "BACKEND_INTEGRATION.md", "file_type": "code", "degree": 0}, {"id": "backend_integration_logout", "label": "User Logout API", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "User Logout API", "community": 262, "community_name": "User Logout API", "source_file": "BACKEND_INTEGRATION.md", "file_type": "code", "degree": 0}, {"id": "canina_pharma_gmbh", "label": "Canina Pharma GmbH", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Canina Pharma GmbH", "community": 272, "community_name": "Canina Pharma GmbH", "source_file": "canina.md", "file_type": "concept", "degree": 0}, {"id": "database_schema_pets", "label": "Pets Table", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Pets Table", "community": 273, "community_name": "Pets Table", "source_file": "DATABASE_SCHEMA.md", "file_type": "code", "degree": 0}, {"id": "docs_01_introduction_canina_iran", "label": "Canina Iran Project Introduction", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Canina Iran Project Introduction", "community": 274, "community_name": "Canina Iran Project Introduction", "source_file": "docs/01-introduction.md", "file_type": "document", "degree": 0}, {"id": "docs_03_developer_guide_standards", "label": "Developer Standards and Architecture", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Developer Standards and Architecture", "community": 275, "community_name": "Developer Standards and Architecture", "source_file": "docs/03-developer-guide.md", "file_type": "document", "degree": 0}, {"id": "docs_audit_frontend_route_map", "label": "Frontend & Admin Architecture Route Map Specification", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend & Admin Architecture Route Map Specification", "community": 276, "community_name": "Frontend & Admin Architecture Route Map Specification", "source_file": "docs/audit/frontend-route-map.md", "file_type": "document", "degree": 0}, {"id": "docs_backlog_tasks", "label": "Project Backlog and Tasks", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Backlog and Tasks", "community": 277, "community_name": "Project Backlog and Tasks", "source_file": "docs/backlog.md", "file_type": "document", "degree": 0}, {"id": "frontend_application_public_fonts_sahel_font_v3_4_0_sample_variable", "label": "Sahel Font Sample", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sahel Font Sample", "community": 286, "community_name": "Sahel Font Sample", "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif", "file_type": "image", "degree": 0}, {"id": "frontend_application_public_fonts_shabnam_font_v5_0_1_changelog", "label": "Shabnam Font Changelog", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font Changelog", "community": 287, "community_name": "Shabnam Font Changelog", "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", "file_type": "document", "degree": 0}, {"id": "frontend_application_public_fonts_vazirmatn_v33_003_changelog", "label": "Vazirmatn Changelog", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Changelog", "community": 288, "community_name": "Vazirmatn Changelog", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", "degree": 0}, {"id": "image_sahel_sample", "label": "Sahel Font Variable Sample", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sahel Font Variable Sample", "community": 290, "community_name": "Sahel Font Variable Sample", "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif", "file_type": "image", "degree": 0}, {"id": "image_shabnam_sample", "label": "Shabnam Font Sample", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font Sample", "community": 291, "community_name": "Shabnam Font Sample", "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png", "file_type": "image", "degree": 0}, {"id": "scripts_compose_prod", "label": "Production Docker Compose", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Production Docker Compose", "community": 292, "community_name": "Production Docker Compose", "source_file": "scripts/compose.prod.yml", "file_type": "code", "degree": 0}, {"id": "scripts_compose_stage", "label": "Staging Docker Compose", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Staging Docker Compose", "community": 293, "community_name": "Staging Docker Compose", "source_file": "scripts/compose.stage.yml", "file_type": "code", "degree": 0}];
|
|
const RAW_EDGES = [{"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_cmd_next_task", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_cmd_progress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_cmd_reset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_cmd_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_cmd_unblock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_load_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate", "to": "ai_agency_orchestrate_save_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_cmd_next_task", "to": "ai_agency_orchestrate_load_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_cmd_progress", "to": "ai_agency_orchestrate_load_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_cmd_status", "to": "ai_agency_orchestrate_load_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_cmd_unblock", "to": "ai_agency_orchestrate_load_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_cmd_reset", "to": "ai_agency_orchestrate_save_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_cmd_unblock", "to": "ai_agency_orchestrate_save_json", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_orchestrate_main", "to": "ai_agency_orchestrate_cmd_status", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "ai_agency_orchestrate_main", "to": "ai_agency_orchestrate_cmd_progress", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "ai_agency_orchestrate_main", "to": "ai_agency_orchestrate_cmd_next_task", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "ai_agency_orchestrate_main", "to": "ai_agency_orchestrate_cmd_unblock", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "ai_agency_orchestrate_main", "to": "ai_agency_orchestrate_cmd_reset", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "gitea_scripts_with_vpn", "to": "gitea_scripts_with_vpn_cleanup", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn", "to": "gitea_scripts_with_vpn_log", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn", "to": "gitea_scripts_with_vpn_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn", "to": "gitea_scripts_with_vpn_start_vpn", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn", "to": "gitea_scripts_with_vpn_stop_vpn", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn", "to": "gitea_scripts_with_vpn_vpn_is_up", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_sh__entry", "to": "gitea_scripts_with_vpn_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_sh__entry", "to": "gitea_scripts_with_vpn_start_vpn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_cleanup", "to": "gitea_scripts_with_vpn_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_start_vpn", "to": "gitea_scripts_with_vpn_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_stop_vpn", "to": "gitea_scripts_with_vpn_log", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_start_vpn", "to": "gitea_scripts_with_vpn_vpn_is_up", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "gitea_scripts_with_vpn_cleanup", "to": "gitea_scripts_with_vpn_stop_vpn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_collection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli", "to": "backend_nest_cli_sourceroot", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_nest_cli_compileroptions", "to": "backend_nest_cli_compileroptions_deleteoutdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_author", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_description", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_jest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package", "to": "backend_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_build_nest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_docs_generate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_seo_backfill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_start_debug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_start_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_start_prod", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test_cov", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test_debug", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test_e2e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_scripts", "to": "backend_package_scripts_test_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_bcrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_bcryptjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_class_transformer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_class_validator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_compression", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_helmet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_ioredis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_js_yaml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_common", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_core", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_jwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_passport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_platform_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_swagger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_nestjs_throttler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_passport", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_passport_jwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_prisma_client", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_reflect_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_rxjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies", "to": "backend_package_dependencies_swagger_ui_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_common", "to": "nestjs_common", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_core", "to": "nestjs_core", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_jwt", "to": "nestjs_jwt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_passport", "to": "nestjs_passport", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_platform_express", "to": "nestjs_platform_express", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_swagger", "to": "nestjs_swagger", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_nestjs_throttler", "to": "nestjs_throttler", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_prisma_client", "to": "prisma_client", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_bcrypt", "to": "bcrypt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_bcryptjs", "to": "bcryptjs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_class_transformer", "to": "class_transformer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_class_validator", "to": "class_validator", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_compression", "to": "compression", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_helmet", "to": "helmet", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_ioredis", "to": "ioredis", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_js_yaml", "to": "js_yaml", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_passport", "to": "passport", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_passport_jwt", "to": "passport_jwt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_reflect_metadata", "to": "reflect_metadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_rxjs", "to": "rxjs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_dependencies_swagger_ui_express", "to": "swagger_ui_express", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_eslint_config_prettier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_eslint_eslintrc", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_eslint_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_eslint_plugin_prettier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_globals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_jest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_nestjs_cli", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_nestjs_schematics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_nestjs_testing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_prettier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_source_map_support", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_supertest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_ts_jest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_ts_loader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_ts_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_tsconfig_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_bcrypt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_bcryptjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_compression", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_express", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_jest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_js_yaml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_multer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_passport_jwt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_types_supertest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies", "to": "backend_package_devdependencies_typescript_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_eslint_eslintrc", "to": "eslint_eslintrc", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_eslint_js", "to": "backend_package_json_eslint_js", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_nestjs_cli", "to": "nestjs_cli", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_nestjs_schematics", "to": "nestjs_schematics", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_nestjs_testing", "to": "nestjs_testing", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_bcrypt", "to": "types_bcrypt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_bcryptjs", "to": "types_bcryptjs", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_compression", "to": "types_compression", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_express", "to": "types_express", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_jest", "to": "types_jest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_js_yaml", "to": "types_js_yaml", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_multer", "to": "types_multer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_node", "to": "backend_package_json_types_node", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_passport_jwt", "to": "types_passport_jwt", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_types_supertest", "to": "types_supertest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_eslint", "to": "backend_package_json_eslint", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_eslint_config_prettier", "to": "eslint_config_prettier", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_eslint_plugin_prettier", "to": "eslint_plugin_prettier", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_globals", "to": "backend_package_json_globals", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_jest", "to": "jest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_prettier", "to": "prettier", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_prisma", "to": "prisma", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_source_map_support", "to": "source_map_support", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_supertest", "to": "supertest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_ts_jest", "to": "ts_jest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_ts_loader", "to": "ts_loader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_ts_node", "to": "ts_node", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_tsconfig_paths", "to": "tsconfig_paths", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_typescript", "to": "backend_package_json_typescript", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_devdependencies_typescript_eslint", "to": "backend_package_json_typescript_eslint", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_collectcoveragefrom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_coveragedirectory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_modulefileextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_rootdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_testenvironment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_testregex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest", "to": "backend_package_jest_transform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest_modulefileextensions", "to": "backend_package_json_ref_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest_modulefileextensions", "to": "ref_js", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest_modulefileextensions", "to": "ref_json", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest_transform", "to": "backend_package_transform_t_j_s", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_jest_collectcoveragefrom", "to": "ref_t_j_s", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_package_prisma", "to": "backend_package_prisma_seed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_coupons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_health_logs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_order_items", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_orders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_pets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_reminders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration", "to": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_orders", "to": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_pets", "to": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", "to": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", "to": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_order_items", "to": "backend_prisma_migrations_20260526145407_init_migration_products", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", "to": "backend_prisma_migrations_20260526145407_init_migration_products", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", "to": "backend_prisma_migrations_20260526145407_init_migration_products", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_reminders", "to": "backend_prisma_migrations_20260526145407_init_migration_products", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_health_logs", "to": "backend_prisma_migrations_20260526145407_init_migration_pets", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", "to": "backend_prisma_migrations_20260526145407_init_migration_pets", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_reminders", "to": "backend_prisma_migrations_20260526145407_init_migration_pets", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", "to": "backend_prisma_migrations_20260526145407_init_migration_reminders", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_orders", "to": "backend_prisma_migrations_20260526145407_init_migration_coupons", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526145407_init_migration_order_items", "to": "backend_prisma_migrations_20260526145407_init_migration_orders", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", "to": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", "to": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_scientificterms", "to": "backend_prisma_scientificterms_scientific_terms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_scientificterms", "to": "backend_prisma_scientificterms_scientificterm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_blogs", "to": "backend_prisma_seed_blogs_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_blogs", "to": "backend_prisma_seed_blogs_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_custom", "to": "backend_prisma_seed_custom_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_custom", "to": "backend_prisma_seed_custom_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_home", "to": "backend_prisma_seed_home_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_home", "to": "backend_prisma_seed_home_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_main", "to": "backend_prisma_seed_home", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_main", "to": "backend_prisma_seed_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_determinesuitablefor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_findorcreatecategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_getproductimageurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_parsesize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_product_symptoms_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_product_taglines_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products", "to": "backend_prisma_seed_products_slugify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products_main", "to": "backend_prisma_seed_products_slugify", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products_main", "to": "backend_prisma_seed_products_determinesuitablefor", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products_main", "to": "backend_prisma_seed_products_parsesize", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products_main", "to": "backend_prisma_seed_products_getproductimageurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_products_main", "to": "backend_prisma_seed_products_findorcreatecategory", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_ui_texts", "to": "backend_prisma_seed_ui_texts_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_ui_texts", "to": "backend_prisma_seed_ui_texts_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_ui_texts", "to": "backend_prisma_seed_ui_texts_ui_texts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_wiki", "to": "backend_prisma_seed_wiki_canonical_wiki_terms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_wiki", "to": "backend_prisma_seed_wiki_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed_wiki", "to": "backend_prisma_seed_wiki_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed", "to": "backend_prisma_seed_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_seed", "to": "backend_prisma_seed_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig", "to": "backend_prisma_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig", "to": "backend_prisma_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_compileroptions", "to": "backend_prisma_tsconfig_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_compileroptions", "to": "backend_prisma_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_compileroptions", "to": "backend_prisma_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_compileroptions", "to": "backend_prisma_tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_compileroptions", "to": "backend_prisma_tsconfig_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_compileroptions_types", "to": "backend_prisma_tsconfig_json_ref_node", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_include", "to": "backend_prisma_tsconfig_json_ref_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed", "to": "backend_prisma_tsconfig_seed_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed", "to": "backend_prisma_tsconfig_seed_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_compileroptions", "to": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_compileroptions", "to": "backend_prisma_tsconfig_seed_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_compileroptions", "to": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_compileroptions", "to": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_compileroptions", "to": "backend_prisma_tsconfig_seed_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_compileroptions_types", "to": "backend_prisma_tsconfig_seed_json_ref_node", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_prisma_tsconfig_seed_include", "to": "backend_prisma_tsconfig_seed_json_ref_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_app_module_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_core_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_fs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_swagger_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_yaml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", "to": "backend_src_app_module_appmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_seo_backfill", "to": "backend_scripts_seo_backfill_prisma", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_seo_backfill", "to": "backend_scripts_seo_backfill_runseobackfill", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_seo_backfill", "to": "backend_scripts_seo_backfill_striphtml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_scripts_seo_backfill_runseobackfill", "to": "backend_scripts_seo_backfill_striphtml", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_spec", "to": "backend_src_admin_admin_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_spec", "to": "backend_src_admin_admin_controller_admincontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_spec", "to": "backend_src_admin_admin_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_spec", "to": "backend_src_admin_admin_service_adminservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_admin_controller_admincontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_admin_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_admin_service_adminservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_admin_service_couponinput", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_admin_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_pricing_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_product_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_product_dto_productdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_user_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_user_dto_createuserdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_admin_dto_user_dto_updateuserdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_settings_settings_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller", "to": "backend_src_settings_settings_service_settingsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_admin_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_createcoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_createdoctor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_createproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_createuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_deleteuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getcoupons", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getdoctors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getorders", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getproducts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_getusers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updateproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updatesettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updateuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller", "to": "backend_src_admin_admin_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_admin_controller_admincontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getcoupons", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getdoctors", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorders", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getproducts", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getsettings", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getusers", "to": "backend_src_admin_admin_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createcoupon", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createdoctor", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createproduct", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createuser", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteuser", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getcoupons", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getdoctors", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorders", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getproducts", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getsettings", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getusers", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateproduct", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatesettings", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuser", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "to": "backend_src_admin_admin_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getcoupons", "to": "backend_src_admin_admin_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorders", "to": "backend_src_admin_admin_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getproducts", "to": "backend_src_admin_admin_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getusers", "to": "backend_src_admin_admin_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getcoupons", "to": "backend_src_admin_admin_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorders", "to": "backend_src_admin_admin_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getproducts", "to": "backend_src_admin_admin_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getusers", "to": "backend_src_admin_admin_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createcoupon", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createdoctor", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createproduct", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createuser", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "to": "backend_src_admin_admin_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createcoupon", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createdoctor", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createproduct", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createuser", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateproduct", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatesettings", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuser", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "to": "backend_src_admin_admin_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteuser", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateproduct", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuser", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "to": "backend_src_admin_admin_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateproduct", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatesettings", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuser", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "to": "backend_src_admin_admin_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "to": "backend_src_admin_admin_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "to": "backend_src_admin_admin_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "to": "backend_src_admin_admin_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteuser", "to": "backend_src_admin_admin_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_constructor", "to": "backend_src_admin_admin_service_adminservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_constructor", "to": "backend_src_settings_settings_service_settingsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "to": "backend_src_admin_admin_service_adminservice_getdashboardstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getusers", "to": "backend_src_admin_admin_service_adminservice_getusers", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getusers", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createuser", "to": "backend_src_admin_admin_service_adminservice_createuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createuser", "to": "backend_src_admin_dto_user_dto_createuserdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "to": "backend_src_admin_admin_service_adminservice_getuserdetails", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuser", "to": "backend_src_admin_admin_service_adminservice_updateuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuser", "to": "backend_src_admin_dto_user_dto_updateuserdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteuser", "to": "backend_src_admin_admin_service_adminservice_deleteuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "to": "backend_src_admin_admin_service_adminservice_updateuserrole", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "to": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getproducts", "to": "backend_src_admin_admin_service_adminservice_getproducts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getproducts", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createproduct", "to": "backend_src_admin_admin_service_adminservice_createproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createproduct", "to": "backend_src_admin_dto_product_dto_productdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateproduct", "to": "backend_src_admin_admin_service_adminservice_updateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateproduct", "to": "backend_src_admin_dto_product_dto_productdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "to": "backend_src_admin_admin_service_adminservice_deleteproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", "to": "backend_src_admin_admin_service_adminservice_getpricingsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "to": "backend_src_admin_admin_service_adminservice_updatepricingsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", "to": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "to": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "to": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "to": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", "to": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorders", "to": "backend_src_admin_admin_service_adminservice_getorders", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorders", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "to": "backend_src_admin_admin_service_adminservice_getorderbyid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "to": "backend_src_admin_admin_service_adminservice_updateorderstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", "to": "backend_src_admin_admin_service_adminservice_refundordertowallet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getcoupons", "to": "backend_src_admin_admin_service_adminservice_getcoupons", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getcoupons", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createcoupon", "to": "backend_src_admin_admin_service_adminservice_createcoupon", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createcoupon", "to": "backend_src_admin_admin_service_couponinput", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "to": "backend_src_admin_admin_service_adminservice_updatecoupon", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "to": "backend_src_admin_admin_service_couponinput", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "to": "backend_src_admin_admin_service_adminservice_togglecoupon", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "to": "backend_src_admin_admin_service_adminservice_deletecoupon", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getdoctors", "to": "backend_src_admin_admin_service_adminservice_getdoctors", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_createdoctor", "to": "backend_src_admin_admin_service_adminservice_createdoctor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "to": "backend_src_admin_admin_service_adminservice_updatedoctor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "to": "backend_src_admin_admin_service_adminservice_deletedoctor", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_getsettings", "to": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_controller_admincontroller_updatesettings", "to": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_admin_module_adminmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_admin_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_admin_service_adminservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_api_keys_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_api_keys_controller_apikeyscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_api_keys_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_api_keys_service_apikeysservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_blogs_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_blogs_controller_blogscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_blogs_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_blogs_service_blogsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_categories_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_categories_controller_categoriescontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_categories_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_categories_service_categoriesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_media_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_media_controller_mediacontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_media_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_media_service_mediaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_pets_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_pets_controller_petscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_pets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_pets_service_petsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_reports_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_reports_controller_reportscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_reports_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_reports_service_reportsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_ssl_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_ssl_controller_sslcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_ssl_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_ssl_service_sslservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_wiki_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_wiki_controller_wikicontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_wiki_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_admin_wiki_service_wikiservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_redis_redis_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_redis_redis_module_redismodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_settings_settings_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module", "to": "backend_src_settings_settings_module_settingsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_admin_admin_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_admin_admin_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_module_adminmodule", "to": "backend_src_admin_admin_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_admin_admin_module_adminmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_admin_admin_module_adminmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_admin_admin_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_admin_admin_service_adminservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_spec", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_admin_service_adminservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_admin_service_couponinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_admin_service_coupontargetinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_admin_service_paginationquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_pricing_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_product_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_product_dto_productdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_user_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_user_dto_createuserdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_dto_user_dto_updateuserdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_phone_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_pricing_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_pricing_utils_applyrounding", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_pricing_utils_calculatesellingprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_pricing_utils_default_pricing_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_pricing_utils_pricingsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_common_utils_pricing_utils_roundingmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_settings_settings_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_settings_settings_service_canonical_aliases", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_createcoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_createdoctor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_createproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_createuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_deletecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_deletedoctor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_deleteproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_deleteuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getcoupons", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getdashboardstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getdoctors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getorderbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getorders", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getpets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getpricingsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getproducts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getuserdetails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_getusers", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_refundordertowallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_togglecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updatecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updatedoctor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updateorderstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updatepricingsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updateproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updatesettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updateuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_adminservice_updateuserrole", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice", "to": "backend_src_admin_admin_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_constructor", "to": "backend_src_admin_admin_service_ts_optional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_constructor", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_constructor", "to": "backend_src_redis_redis_service_redisservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_getdashboardstats", "to": "backend_src_redis_redis_service_redisservice_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_createuser", "to": "backend_src_admin_dto_user_dto_createuserdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_createuser", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_updateuser", "to": "backend_src_admin_dto_user_dto_updateuserdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_updateuser", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_createproduct", "to": "backend_src_admin_dto_product_dto_productdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_createproduct", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_updateproduct", "to": "backend_src_admin_dto_product_dto_productdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_updateproduct", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_deleteproduct", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_updateorderstatus", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_refundordertowallet", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_updatesettings", "to": "backend_src_admin_admin_service_adminservice_getsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "to": "backend_src_admin_admin_service_adminservice_getpricingsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "to": "backend_src_admin_admin_service_adminservice_getpricingsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_getpricingsettings", "to": "backend_src_common_utils_pricing_utils_pricingsettings", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_updatepricingsettings", "to": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_updatepricingsettings", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_updatepricingsettings", "to": "backend_src_common_utils_pricing_utils_calculatesellingprice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "to": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "to": "backend_src_common_utils_pricing_utils_calculatesellingprice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "to": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "to": "backend_src_common_utils_pricing_utils_applyrounding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_admin_api_keys_controller_apikeyscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_admin_api_keys_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_admin_api_keys_service_apikeysservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_admin_dto_api_key_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_admin_dto_api_key_dto_createapikeydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_apikeyscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_apikeyscontroller_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_apikeyscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_apikeyscontroller_togglestatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller", "to": "backend_src_admin_api_keys_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_findall", "to": "backend_src_admin_api_keys_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "to": "backend_src_admin_api_keys_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_delete", "to": "backend_src_admin_api_keys_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_findall", "to": "backend_src_admin_api_keys_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_togglestatus", "to": "backend_src_admin_api_keys_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "to": "backend_src_admin_api_keys_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "to": "backend_src_admin_api_keys_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_togglestatus", "to": "backend_src_admin_api_keys_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_delete", "to": "backend_src_admin_api_keys_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_togglestatus", "to": "backend_src_admin_api_keys_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_delete", "to": "backend_src_admin_api_keys_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_constructor", "to": "backend_src_admin_api_keys_service_apikeysservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_findall", "to": "backend_src_admin_api_keys_service_apikeysservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_findall", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "to": "backend_src_admin_api_keys_service_apikeysservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "to": "backend_src_admin_dto_api_key_dto_createapikeydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_create", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_togglestatus", "to": "backend_src_admin_api_keys_service_apikeysservice_togglestatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_api_keys_controller_apikeyscontroller_delete", "to": "backend_src_admin_api_keys_service_apikeysservice_delete", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_api_keys_service", "to": "backend_src_admin_api_keys_service_apikeysservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service", "to": "backend_src_admin_dto_api_key_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service", "to": "backend_src_admin_dto_api_key_dto_createapikeydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard", "to": "backend_src_admin_api_keys_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_delete", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_hashkey", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_togglestatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_apikeysservice_validatekey", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice", "to": "backend_src_admin_api_keys_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard", "to": "backend_src_admin_api_keys_service_apikeysservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard_constructor", "to": "backend_src_admin_api_keys_service_apikeysservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice_create", "to": "backend_src_admin_api_keys_service_apikeysservice_hashkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice_validatekey", "to": "backend_src_admin_api_keys_service_apikeysservice_hashkey", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_api_keys_service_apikeysservice_create", "to": "backend_src_admin_dto_api_key_dto_createapikeydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard_canactivate", "to": "backend_src_admin_api_keys_service_apikeysservice_validatekey", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_admin_blogs_controller_blogscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_admin_blogs_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_admin_blogs_service_blogsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_createblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_getauthors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_getcomments", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller", "to": "backend_src_admin_blogs_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getauthors", "to": "backend_src_admin_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", "to": "backend_src_admin_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", "to": "backend_src_admin_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "to": "backend_src_admin_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", "to": "backend_src_admin_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getcomments", "to": "backend_src_admin_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblog", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getauthors", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getcomments", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", "to": "backend_src_admin_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "to": "backend_src_admin_blogs_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getcomments", "to": "backend_src_admin_blogs_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "to": "backend_src_admin_blogs_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getcomments", "to": "backend_src_admin_blogs_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblog", "to": "backend_src_admin_blogs_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", "to": "backend_src_admin_blogs_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", "to": "backend_src_admin_blogs_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblog", "to": "backend_src_admin_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", "to": "backend_src_admin_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", "to": "backend_src_admin_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "to": "backend_src_admin_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", "to": "backend_src_admin_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", "to": "backend_src_admin_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "to": "backend_src_admin_blogs_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", "to": "backend_src_admin_blogs_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", "to": "backend_src_admin_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", "to": "backend_src_admin_blogs_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", "to": "backend_src_admin_blogs_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", "to": "backend_src_admin_blogs_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", "to": "backend_src_admin_blogs_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_createblog", "to": "backend_src_admin_blogs_controller_ts_request", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", "to": "backend_src_admin_blogs_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_constructor", "to": "backend_src_admin_blogs_service_blogsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_admin_blogs_service_blogsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_createblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_createblogcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_createblogtag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_deleteblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_deleteblogcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_deleteblogtag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_deletecomment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_getauthors", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_getblogbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_getblogcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_getblogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_getblogtags", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_getcomments", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_updateblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_updateblogcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice", "to": "backend_src_admin_blogs_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice_constructor", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice_getblogs", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service_blogsservice_createblog", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_blogs_service_blogsservice_updateblog", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_blogs_service_blogsservice_deleteblog", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_blogs_service_blogsservice_deletecomment", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_admin_categories_controller_categoriescontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_admin_categories_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_admin_categories_service_categoriesservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_categoriescontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller", "to": "backend_src_admin_categories_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", "to": "backend_src_admin_categories_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "to": "backend_src_admin_categories_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "to": "backend_src_admin_categories_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "to": "backend_src_admin_categories_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", "to": "backend_src_admin_categories_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "to": "backend_src_admin_categories_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "to": "backend_src_admin_categories_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "to": "backend_src_admin_categories_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "to": "backend_src_admin_categories_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "to": "backend_src_admin_categories_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "to": "backend_src_admin_categories_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "to": "backend_src_admin_categories_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "to": "backend_src_admin_categories_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "to": "backend_src_admin_categories_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "to": "backend_src_admin_categories_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "to": "backend_src_admin_categories_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_constructor", "to": "backend_src_admin_categories_service_categoriesservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "to": "backend_src_admin_categories_service_categoriesservice_getcategories", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", "to": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "to": "backend_src_admin_categories_service_categoriesservice_createcategory", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "to": "backend_src_admin_categories_service_categoriesservice_updatecategory", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "to": "backend_src_admin_categories_service_categoriesservice_deletecategory", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_categories_service", "to": "backend_src_admin_categories_service_categoriesservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service", "to": "backend_src_admin_categories_service_categoryquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_categoriesservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_categoriesservice_createcategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_categoriesservice_deletecategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_categoriesservice_getcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_categoriesservice_updatecategory", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice", "to": "backend_src_admin_categories_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_categories_service_categoriesservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto", "to": "backend_src_admin_dto_admin_query_dto_adminproductquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto_adminproductquerydto", "to": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto_adminquerydto", "to": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto_adminquerydto", "to": "backend_src_admin_dto_admin_query_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto_adminquerydto", "to": "backend_src_admin_dto_admin_query_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_admin_query_dto_adminquerydto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto", "to": "backend_src_admin_dto_api_key_dto_createapikeydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto_createapikeydto", "to": "backend_src_admin_dto_api_key_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto_createapikeydto", "to": "backend_src_admin_dto_api_key_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto_createapikeydto", "to": "backend_src_admin_dto_api_key_dto_ts_isarray", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto_createapikeydto", "to": "backend_src_admin_dto_api_key_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto_createapikeydto", "to": "backend_src_admin_dto_api_key_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_api_key_dto_createapikeydto", "to": "backend_src_admin_dto_api_key_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto", "to": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto", "to": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto", "to": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_updatepricingsettingsdto", "to": "backend_src_admin_dto_pricing_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_isin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_applyglobalmarginsdto", "to": "backend_src_admin_dto_pricing_dto_ts_isarray", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_pricing_dto_bulkpriceadjustmentdto", "to": "backend_src_admin_dto_pricing_dto_ts_isarray", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto", "to": "backend_src_admin_dto_product_dto_productdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto_productdto", "to": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto_productdto", "to": "backend_src_admin_dto_product_dto_ts_isarray", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto_productdto", "to": "backend_src_admin_dto_product_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto_productdto", "to": "backend_src_admin_dto_product_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto_productdto", "to": "backend_src_admin_dto_product_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_product_dto_productdto", "to": "backend_src_admin_dto_product_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto", "to": "backend_src_admin_dto_user_dto_createuserdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto", "to": "backend_src_admin_dto_user_dto_updateuserdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_isemail", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_createuserdto", "to": "backend_src_admin_dto_user_dto_ts_minlength", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_updateuserdto", "to": "backend_src_admin_dto_user_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_updateuserdto", "to": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_updateuserdto", "to": "backend_src_admin_dto_user_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_updateuserdto", "to": "backend_src_admin_dto_user_dto_ts_isemail", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_updateuserdto", "to": "backend_src_admin_dto_user_dto_ts_minlength", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_dto_user_dto_updateuserdto", "to": "backend_src_admin_dto_user_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller", "to": "backend_src_admin_media_controller_mediacontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller", "to": "backend_src_admin_media_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller", "to": "backend_src_admin_media_service_mediaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_mediacontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_mediacontroller_deletemedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_mediacontroller_getallmedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_mediacontroller_updatemedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_mediacontroller_uploadfile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller", "to": "backend_src_admin_media_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "to": "backend_src_admin_media_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemedia", "to": "backend_src_admin_media_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_getallmedia", "to": "backend_src_admin_media_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_updatemedia", "to": "backend_src_admin_media_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_getallmedia", "to": "backend_src_admin_media_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "to": "backend_src_admin_media_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemedia", "to": "backend_src_admin_media_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_getallmedia", "to": "backend_src_admin_media_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_updatemedia", "to": "backend_src_admin_media_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_uploadfile", "to": "backend_src_admin_media_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_uploadfile", "to": "backend_src_admin_media_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_uploadfile", "to": "backend_src_admin_media_controller_ts_useinterceptors", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_uploadfile", "to": "backend_src_admin_media_controller_ts_uploadedfile", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "to": "backend_src_admin_media_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemedia", "to": "backend_src_admin_media_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "to": "backend_src_admin_media_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_updatemedia", "to": "backend_src_admin_media_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemedia", "to": "backend_src_admin_media_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_updatemedia", "to": "backend_src_admin_media_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_updatemedia", "to": "backend_src_admin_media_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_constructor", "to": "backend_src_admin_media_service_mediaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_getallmedia", "to": "backend_src_admin_media_service_mediaservice_getallmedia", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_media_controller_mediacontroller_uploadfile", "to": "backend_src_admin_media_service_mediaservice_uploadfile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", "to": "backend_src_admin_media_service_mediaservice_deletemanymedia", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_media_controller_mediacontroller_deletemedia", "to": "backend_src_admin_media_service_mediaservice_deletemedia", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_media_controller_mediacontroller_updatemedia", "to": "backend_src_admin_media_service_mediaservice_updatemedia", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_media_service", "to": "backend_src_admin_media_service_mediaservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_mediaservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_mediaservice_deletemanymedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_mediaservice_deletemedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_mediaservice_getallmedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_mediaservice_updatemedia", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_mediaservice_uploadfile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice", "to": "backend_src_admin_media_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_service_mediaservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_admin_pets_controller_petscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_admin_pets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_admin_pets_service_petsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_petscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_petscontroller_deletepet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_petscontroller_getpets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller", "to": "backend_src_admin_pets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_getpets", "to": "backend_src_admin_pets_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_deletepet", "to": "backend_src_admin_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_getpets", "to": "backend_src_admin_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_getpets", "to": "backend_src_admin_pets_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_getpets", "to": "backend_src_admin_pets_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_deletepet", "to": "backend_src_admin_pets_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_deletepet", "to": "backend_src_admin_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_constructor", "to": "backend_src_admin_pets_service_petsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_controller_petscontroller_getpets", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service", "to": "backend_src_admin_pets_service_petquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service", "to": "backend_src_admin_pets_service_petsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service_petsservice", "to": "backend_src_admin_pets_service_petsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service_petsservice", "to": "backend_src_admin_pets_service_petsservice_deletepet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service_petsservice", "to": "backend_src_admin_pets_service_petsservice_getpets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service_petsservice", "to": "backend_src_admin_pets_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_pets_service_petsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller", "to": "backend_src_admin_reports_controller_reportscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller", "to": "backend_src_admin_reports_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller", "to": "backend_src_admin_reports_service_reportsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller", "to": "backend_src_admin_reports_controller_reportscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller", "to": "backend_src_admin_reports_controller_reportscontroller_getreports", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller", "to": "backend_src_admin_reports_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller", "to": "backend_src_admin_reports_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller", "to": "backend_src_admin_reports_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_getreports", "to": "backend_src_admin_reports_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_getreports", "to": "backend_src_admin_reports_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_getreports", "to": "backend_src_admin_reports_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_getreports", "to": "backend_src_admin_reports_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_getreports", "to": "backend_src_admin_reports_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_constructor", "to": "backend_src_admin_reports_service_reportsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_controller_reportscontroller_getreports", "to": "backend_src_admin_reports_service_reportsservice_getdashboardreports", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_reports_service", "to": "backend_src_admin_reports_service_reportsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_service_reportsservice", "to": "backend_src_admin_reports_service_reportsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_service_reportsservice", "to": "backend_src_admin_reports_service_reportsservice_getdashboardreports", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_service_reportsservice", "to": "backend_src_admin_reports_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_reports_service_reportsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_admin_ssl_controller_sslcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_admin_ssl_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_admin_ssl_service_sslservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_sslcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_sslcontroller_getstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_sslcontroller_testdomain", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_admin_ssl_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_getstatus", "to": "backend_src_admin_ssl_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_testdomain", "to": "backend_src_admin_ssl_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_getstatus", "to": "backend_src_admin_ssl_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_testdomain", "to": "backend_src_admin_ssl_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", "to": "backend_src_admin_ssl_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "to": "backend_src_admin_ssl_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", "to": "backend_src_admin_ssl_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "to": "backend_src_admin_ssl_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", "to": "backend_src_admin_ssl_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "to": "backend_src_admin_ssl_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "to": "backend_src_admin_ssl_controller_ts_useinterceptors", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "to": "uploadedfiles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_testdomain", "to": "backend_src_admin_ssl_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_constructor", "to": "backend_src_admin_ssl_service_sslservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_getstatus", "to": "backend_src_admin_ssl_service_sslservice_getstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", "to": "backend_src_admin_ssl_service_sslservice_updatecertificates", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", "to": "backend_src_admin_ssl_service_sslservice_updatecertificates", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_ssl_controller_sslcontroller_testdomain", "to": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_admin_ssl_service", "to": "backend_src_admin_ssl_service_sslcertinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service", "to": "backend_src_admin_ssl_service_sslservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_getcertpath", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_getkeypath", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_getstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_toshamsi", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_sslservice_updatecertificates", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice", "to": "backend_src_admin_ssl_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice_getstatus", "to": "backend_src_admin_ssl_service_sslservice_getcertpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice_updatecertificates", "to": "backend_src_admin_ssl_service_sslservice_getcertpath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice_updatecertificates", "to": "backend_src_admin_ssl_service_sslservice_getkeypath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice_getstatus", "to": "backend_src_admin_ssl_service_sslservice_toshamsi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", "to": "backend_src_admin_ssl_service_sslservice_toshamsi", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_ssl_service_sslservice_updatecertificates", "to": "backend_src_admin_ssl_service_sslservice_getstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_admin_wiki_controller_wikicontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_admin_wiki_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_admin_wiki_service_wikiservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_wikicontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_wikicontroller_createterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_wikicontroller_getterms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller", "to": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_getterms", "to": "backend_src_admin_wiki_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_createterm", "to": "backend_src_admin_wiki_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", "to": "backend_src_admin_wiki_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_getterms", "to": "backend_src_admin_wiki_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "to": "backend_src_admin_wiki_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_getterms", "to": "backend_src_admin_wiki_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_getterms", "to": "backend_src_admin_wiki_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_createterm", "to": "backend_src_admin_wiki_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_createterm", "to": "backend_src_admin_wiki_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "to": "backend_src_admin_wiki_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "to": "backend_src_admin_wiki_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", "to": "backend_src_admin_wiki_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "to": "backend_src_admin_wiki_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", "to": "backend_src_admin_wiki_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_constructor", "to": "backend_src_admin_wiki_service_wikiservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_controller_wikicontroller_getterms", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service", "to": "backend_src_admin_wiki_service_wikiquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service", "to": "backend_src_admin_wiki_service_wikiservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice", "to": "backend_src_admin_wiki_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice", "to": "backend_src_admin_wiki_service_wikiservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice", "to": "backend_src_admin_wiki_service_wikiservice_createterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice", "to": "backend_src_admin_wiki_service_wikiservice_deleteterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice", "to": "backend_src_admin_wiki_service_wikiservice_getterms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice", "to": "backend_src_admin_wiki_service_wikiservice_updateterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_wiki_service_wikiservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_spec", "to": "backend_src_app_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_spec", "to": "backend_src_app_controller_appcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_spec", "to": "backend_src_app_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_spec", "to": "backend_src_app_service_appservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller", "to": "backend_src_app_controller_appcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller", "to": "backend_src_app_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller", "to": "backend_src_app_service_appservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_appcontroller", "to": "backend_src_app_controller_appcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_appcontroller", "to": "backend_src_app_controller_appcontroller_gethello", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_appcontroller", "to": "backend_src_app_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_appcontroller_gethello", "to": "backend_src_app_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_appcontroller_constructor", "to": "backend_src_app_service_appservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_controller_appcontroller_gethello", "to": "backend_src_app_service_appservice_gethello", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_app_module", "to": "backend_src_app_module_appmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_auth_auth_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_auth_auth_module_authmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_b2b_b2b_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_b2b_b2b_module_b2bmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_banners_banners_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_banners_banners_module_bannersmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_blogs_blogs_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_blogs_blogs_module_blogsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_cms_cms_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_cms_cms_module_cmsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_common_metrics_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_common_metrics_controller_metricscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_common_revalidation_revalidation_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_common_revalidation_revalidation_module_revalidationmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_common_sms_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_common_sms_module_smsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_contact_contact_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_contact_contact_module_contactmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_doctors_doctors_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_doctors_doctors_module_doctorsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_faq_faq_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_faq_faq_module_faqmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_home_home_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_home_home_module_homemodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_ingredients_ingredients_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_ingredients_ingredients_module_ingredientsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_menu_menu_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_menu_menu_module_menumodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_orders_orders_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_orders_orders_module_ordersmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_payment_payment_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_payment_payment_module_paymentmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_pets_pets_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_pets_pets_module_petsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_prescriptions_prescriptions_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_products_products_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_products_products_module_productsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_redis_redis_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_redis_redis_module_redismodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_reviews_reviews_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_reviews_reviews_module_reviewsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_seo_seo_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_seo_seo_module_seomodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_settings_settings_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_settings_settings_module_settingsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_smart_advisor_smart_advisor_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_testimonials_testimonials_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_testimonials_testimonials_module_testimonialsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_tickets_tickets_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_tickets_tickets_module_ticketsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_users_users_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_users_users_module_usersmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_videos_videos_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_videos_videos_module_videosmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_wholesale_wholesale_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_wholesale_wholesale_module_wholesalemodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_wiki_wiki_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module", "to": "backend_src_wiki_wiki_module_wikimodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module_appmodule", "to": "backend_src_app_module_appmodule_configure", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module_appmodule", "to": "backend_src_app_module_appmodule_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module_appmodule", "to": "backend_src_app_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_app_module_appmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_app_module_appmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", "to": "backend_src_app_module_appmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module_appmodule_constructor", "to": "backend_src_redis_redis_service_redisservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module_appmodule_configure", "to": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_module_appmodule_configure", "to": "backend_src_redis_redis_service_redisservice_incr", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_app_service", "to": "backend_src_app_service_appservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_service_appservice", "to": "backend_src_app_service_appservice_gethello", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_app_service_appservice", "to": "backend_src_app_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_constants", "to": "backend_src_auth_auth_constants_default_jwt_refresh_secret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_constants", "to": "backend_src_auth_auth_constants_default_jwt_secret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_constants", "to": "backend_src_auth_auth_constants_getjwtrefreshsecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_constants", "to": "backend_src_auth_auth_constants_getjwtsecret", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_constants", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy", "to": "backend_src_auth_auth_constants", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_constants_getjwtsecret", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy", "to": "backend_src_auth_auth_constants_getjwtsecret", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", "to": "backend_src_auth_auth_constants_getjwtsecret", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_spec", "to": "backend_src_auth_auth_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_spec", "to": "backend_src_auth_auth_controller_authcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_spec", "to": "backend_src_auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_spec", "to": "backend_src_auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_auth_controller_authcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_admin_login_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_admin_login_dto_adminlogindto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_login_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_login_dto_logindto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_register_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_register_dto_registerdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_send_otp_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_verify_otp_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_adminlogin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_logout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_refresh", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_sendotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_authcontroller_verifyotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "backend_src_auth_auth_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_controller_authcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_auth_controller_ts_throttle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_auth_controller_ts_throttle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_logout", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_auth_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_logout", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "httpcode", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_logout", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_auth_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_logout", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "backend_src_auth_auth_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "backend_src_auth_auth_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "backend_src_auth_auth_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_auth_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_auth_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "backend_src_auth_auth_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "backend_src_auth_auth_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_refresh", "to": "backend_src_auth_auth_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_constructor", "to": "backend_src_auth_auth_service_authservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_sendotp", "to": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_verifyotp", "to": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_register", "to": "backend_src_auth_dto_register_dto_registerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_login", "to": "backend_src_auth_dto_login_dto_logindto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_controller_authcontroller_adminlogin", "to": "backend_src_auth_dto_admin_login_dto_adminlogindto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_module_authmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_jwt_strategy", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_auth_jwt_strategy_jwtstrategy", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_users_users_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module", "to": "backend_src_users_users_module_usersmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_module_authmodule", "to": "backend_src_auth_auth_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_auth_auth_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_auth_auth_service_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_spec", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_auth_service_adminlogininput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_auth_service_authservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_auth_service_logininput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_auth_service_registerinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_dto_send_otp_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_dto_verify_otp_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_common_utils_phone_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_adminlogin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_refresh", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_sendotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_authservice_verifyotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice", "to": "backend_src_auth_auth_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_constructor", "to": "backend_src_redis_redis_service_redisservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_common_services_sms_service_smsservice_sendotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_redis_redis_service_redisservice_del", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_redis_redis_service_redisservice_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_redis_redis_service_redisservice_incr", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_sendotp", "to": "backend_src_redis_redis_service_redisservice_ttl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_verifyotp", "to": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_verifyotp", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_verifyotp", "to": "backend_src_redis_redis_service_redisservice_del", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_verifyotp", "to": "backend_src_redis_redis_service_redisservice_get", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_auth_service_authservice_register", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_auth_service_authservice_login", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_admin_login_dto", "to": "backend_src_auth_dto_admin_login_dto_adminlogindto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_admin_login_dto_adminlogindto", "to": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_admin_login_dto_adminlogindto", "to": "backend_src_auth_dto_admin_login_dto_ts_isemail", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_admin_login_dto_adminlogindto", "to": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_admin_login_dto_adminlogindto", "to": "backend_src_auth_dto_admin_login_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_admin_login_dto_adminlogindto", "to": "backend_src_auth_dto_admin_login_dto_ts_minlength", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_login_dto", "to": "backend_src_auth_dto_login_dto_logindto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_login_dto_logindto", "to": "backend_src_auth_dto_login_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_login_dto_logindto", "to": "backend_src_auth_dto_login_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_login_dto_logindto", "to": "backend_src_auth_dto_login_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_login_dto_logindto", "to": "backend_src_auth_dto_login_dto_ts_minlength", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto", "to": "backend_src_auth_dto_register_dto_registerdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_isemail", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_register_dto_registerdto", "to": "backend_src_auth_dto_register_dto_ts_minlength", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_send_otp_dto", "to": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_send_otp_dto_sendotpdto", "to": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_send_otp_dto_sendotpdto", "to": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_send_otp_dto_sendotpdto", "to": "backend_src_auth_dto_send_otp_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_send_otp_dto_sendotpdto", "to": "backend_src_auth_dto_send_otp_dto_ts_matches", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_verify_otp_dto", "to": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "to": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "to": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "to": "backend_src_auth_dto_verify_otp_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "to": "backend_src_auth_dto_verify_otp_dto_ts_matches", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "to": "length", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_auth_jwt_auth_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard_canactivate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard", "to": "backend_src_auth_jwt_auth_guard_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_auth_guard_jwtauthguard_constructor", "to": "inject", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy", "to": "backend_src_auth_jwt_strategy_jwtpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy", "to": "backend_src_auth_jwt_strategy_jwtstrategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy", "to": "backend_src_users_users_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy", "to": "backend_src_users_users_service_usersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy_jwtstrategy", "to": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy_jwtstrategy", "to": "backend_src_auth_jwt_strategy_jwtstrategy_validate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy_jwtstrategy", "to": "backend_src_auth_jwt_strategy_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", "to": "backend_src_users_users_service_usersservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_jwt_strategy_jwtstrategy_validate", "to": "backend_src_users_users_service_usersservice_findbyid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_auth_roles_decorator", "to": "backend_src_common_decorators_roles_decorator", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_auth_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_auth_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_auth_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_auth_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_auth_roles_guard", "to": "backend_src_common_guards_roles_guard", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_auth_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_auth_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_auth_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_auth_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_b2b_b2b_controller_b2bcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_b2b_b2b_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_b2b_b2b_service_b2bservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_b2b_b2b_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller", "to": "backend_src_b2b_b2b_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_b2b_b2b_controller_b2bcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "to": "backend_src_b2b_b2b_controller_ts_throttle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "to": "backend_src_b2b_b2b_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "to": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "to": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "to": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "to": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "to": "backend_src_b2b_b2b_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "to": "backend_src_b2b_b2b_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "to": "backend_src_b2b_b2b_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "to": "backend_src_b2b_b2b_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "to": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "to": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "to": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "to": "backend_src_b2b_b2b_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "to": "backend_src_b2b_b2b_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "to": "backend_src_b2b_b2b_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "to": "backend_src_b2b_b2b_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", "to": "backend_src_b2b_b2b_service_b2bservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", "to": "backend_src_b2b_b2b_service_b2bservice_createinquiry", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "to": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "to": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "to": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "to": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_b2b_b2b_module_b2bmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_b2b_b2b_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_b2b_b2b_service_b2bservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_module_b2bmodule", "to": "backend_src_b2b_b2b_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service", "to": "backend_src_b2b_b2b_service_b2bservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service", "to": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_createinquiry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice", "to": "backend_src_b2b_b2b_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_b2b_b2b_service_b2bservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_banners_banners_controller_bannerscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_banners_banners_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_banners_banners_service_bannersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_banners_banners_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_bannerscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_bannerscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_bannerscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_bannerscontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_bannerscontroller_reorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_bannerscontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller", "to": "backend_src_banners_banners_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_banners_banners_controller_bannerscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_findall", "to": "backend_src_banners_banners_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_banners_banners_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_findall", "to": "backend_src_banners_banners_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_banners_banners_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_banners_banners_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_banners_banners_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_banners_banners_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_banners_banners_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_banners_banners_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_banners_banners_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_banners_banners_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_banners_banners_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_banners_banners_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_banners_banners_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_banners_banners_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_banners_banners_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_banners_banners_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_constructor", "to": "backend_src_banners_banners_service_bannersservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_findall", "to": "backend_src_banners_banners_service_bannersservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_banners_banners_service_bannersservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_create", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_banners_banners_service_bannersservice_reorder", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_reorder", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_banners_banners_service_bannersservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_update", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_banners_banners_service_bannersservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_banners_banners_controller_bannerscontroller_remove", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_banners_banners_module_bannersmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_banners_banners_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_banners_banners_service_bannersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_module_bannersmodule", "to": "backend_src_banners_banners_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service", "to": "backend_src_banners_banners_service_bannersservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_bannersservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_bannersservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_bannersservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_bannersservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_bannersservice_reorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_bannersservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice", "to": "backend_src_banners_banners_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_banners_banners_service_bannersservice_reorder", "to": "backend_src_banners_banners_service_bannersservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_blogs_blogs_controller_blogscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_blogs_blogs_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_blogs_blogs_service_blogsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_module", "to": "backend_src_blogs_blogs_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_findtags", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_blogscontroller_incrementview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "backend_src_blogs_blogs_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_module", "to": "backend_src_blogs_blogs_controller_blogscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findall", "to": "backend_src_blogs_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", "to": "backend_src_blogs_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "to": "backend_src_blogs_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "to": "backend_src_blogs_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findone", "to": "backend_src_blogs_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findtags", "to": "backend_src_blogs_blogs_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findall", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findone", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findtags", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_incrementview", "to": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findall", "to": "backend_src_blogs_blogs_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "to": "backend_src_blogs_blogs_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findone", "to": "backend_src_blogs_blogs_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findall", "to": "backend_src_blogs_blogs_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findone", "to": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "to": "backend_src_blogs_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "to": "backend_src_blogs_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findone", "to": "backend_src_blogs_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_incrementview", "to": "backend_src_blogs_blogs_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "to": "backend_src_blogs_blogs_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_incrementview", "to": "backend_src_blogs_blogs_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "to": "backend_src_blogs_blogs_controller_ts_throttle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "to": "backend_src_blogs_blogs_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_constructor", "to": "backend_src_blogs_blogs_service_blogsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_controller_blogscontroller_findall", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_module", "to": "backend_src_blogs_blogs_module_blogsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_module", "to": "backend_src_blogs_blogs_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_module", "to": "backend_src_blogs_blogs_service_blogsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_module_blogsmodule", "to": "backend_src_blogs_blogs_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service", "to": "backend_src_blogs_blogs_service_blogfilterdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service", "to": "backend_src_blogs_blogs_service_blogsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogfilterdto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_addcomment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_findhomepage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_getcategories", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_gettags", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_blogsservice_incrementview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice", "to": "backend_src_blogs_blogs_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_blogs_service_blogsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_dto_create_blog_dto", "to": "backend_src_blogs_dto_create_blog_dto_createblogdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_dto_update_blog_dto", "to": "backend_src_blogs_dto_create_blog_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_dto_update_blog_dto", "to": "backend_src_blogs_dto_create_blog_dto_createblogdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_dto_update_blog_dto", "to": "backend_src_blogs_dto_update_blog_dto_updateblogdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_blogs_entities_blog_entity", "to": "backend_src_blogs_entities_blog_entity_blog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_cms_controller_cmscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_cms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_cms_service_cmsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_dto_cms_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_cms_cms_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_getherobanners", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_cms_cms_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_cms_cms_controller_cmscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getherobanners", "to": "backend_src_cms_cms_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", "to": "backend_src_cms_cms_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", "to": "backend_src_cms_cms_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getherobanners", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "to": "backend_src_cms_cms_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "to": "backend_src_cms_cms_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "to": "backend_src_cms_cms_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "to": "backend_src_cms_cms_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "to": "backend_src_cms_cms_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "to": "backend_src_cms_cms_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "to": "backend_src_cms_cms_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "to": "backend_src_cms_cms_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "to": "backend_src_cms_cms_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "to": "backend_src_cms_cms_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "to": "backend_src_cms_cms_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "to": "backend_src_cms_cms_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "to": "backend_src_cms_cms_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "to": "backend_src_cms_cms_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "to": "backend_src_cms_cms_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "to": "backend_src_cms_cms_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_constructor", "to": "backend_src_cms_cms_service_cmsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getherobanners", "to": "backend_src_cms_cms_service_cmsservice_getherobanners", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "to": "backend_src_cms_cms_service_cmsservice_createherobanner", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "to": "backend_src_cms_cms_service_cmsservice_updateherobanner", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "to": "backend_src_cms_cms_service_cmsservice_deleteherobanner", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", "to": "backend_src_cms_cms_service_cmsservice_getvettestimonials", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "to": "backend_src_cms_cms_service_cmsservice_createvettestimonial", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "to": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "to": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", "to": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "to": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "to": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "to": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_cms_cms_module_cmsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_cms_cms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_cms_cms_service_cmsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_module_cmsmodule", "to": "backend_src_cms_cms_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_cms_cms_service_cmsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_cms_dto_cms_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_createherobanner", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_createvettestimonial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_deleteherobanner", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_getherobanners", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_getvettestimonials", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_updateherobanner", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice", "to": "backend_src_cms_cms_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_createherobanner", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_updateherobanner", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_createvettestimonial", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto", "to": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto", "to": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto", "to": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createherobannerdto", "to": "backend_src_cms_dto_cms_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createherobannerdto", "to": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createherobannerdto", "to": "backend_src_cms_dto_cms_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createherobannerdto", "to": "backend_src_cms_dto_cms_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createherobannerdto", "to": "backend_src_cms_dto_cms_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createherobannerdto", "to": "backend_src_cms_dto_cms_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "to": "backend_src_cms_dto_cms_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "to": "backend_src_cms_dto_cms_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "to": "backend_src_cms_dto_cms_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "to": "backend_src_cms_dto_cms_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "to": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "to": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "to": "backend_src_cms_dto_cms_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "to": "backend_src_cms_dto_cms_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "to": "backend_src_cms_dto_cms_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "to": "backend_src_cms_dto_cms_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", "to": "isuuid", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_decorators_roles_decorator", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_decorators_roles_decorator", "to": "backend_src_common_decorators_roles_decorator_roles_key", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_spec", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_common_decorators_roles_decorator", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard", "to": "backend_src_common_decorators_roles_decorator_roles_key", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_spec", "to": "backend_src_common_decorators_roles_decorator_roles_key", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_common_decorators_roles_decorator_roles_key", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findall", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_common_decorators_roles_decorator_roles", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto", "to": "backend_src_common_dto_pagination_dto_sortorder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service", "to": "backend_src_common_dto_pagination_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_isenum", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_isint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "backend_src_common_dto_pagination_dto_ts_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_findallbyuser", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findall", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_findalladmin", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_findallbyuser", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto_getproductsdto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findall", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service_wikiservice_findall", "to": "backend_src_common_dto_pagination_dto_paginationdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_env_validation", "to": "backend_src_common_env_validation_environmentvariables", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_env_validation", "to": "backend_src_common_env_validation_validateenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_env_validation", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_env_validation_environmentvariables", "to": "backend_src_common_env_validation_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_env_validation_environmentvariables", "to": "backend_src_common_env_validation_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_env_validation_environmentvariables", "to": "backend_src_common_env_validation_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_env_validation_validateenv", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main_bootstrap", "to": "backend_src_common_env_validation_validateenv", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter", "to": "backend_src_common_schemas_error_response_schema", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter", "to": "backend_src_common_schemas_error_response_schema_errordetailfield", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_filters_http_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_filters_http_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_filters_http_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "to": "backend_src_common_filters_http_exception_filter_ts_catch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", "to": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_prisma_exception_filter", "to": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_filters_prisma_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_filters_prisma_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_filters_prisma_exception_filter", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "to": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "to": "backend_src_common_filters_prisma_exception_filter_ts_catch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_spec", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_spec", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard", "to": "backend_src_common_guards_roles_guard_requestwithuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_common_guards_roles_guard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_rolesguard", "to": "backend_src_common_guards_roles_guard_rolesguard_canactivate", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_rolesguard", "to": "backend_src_common_guards_roles_guard_rolesguard_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_guards_roles_guard_rolesguard", "to": "backend_src_common_guards_roles_guard_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_common_guards_roles_guard_rolesguard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor_spec", "to": "backend_src_common_interceptors_decimal_interceptor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor_spec", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_interceptors_decimal_interceptor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_interceptors_decimal_interceptor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_interceptors_decimal_interceptor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "to": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", "to": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller", "to": "backend_src_common_metrics_controller_metricscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller", "to": "apiexcludecontroller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller", "to": "backend_src_common_metrics_controller_metricscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller", "to": "backend_src_common_metrics_controller_metricscontroller_getmetrics", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller", "to": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller", "to": "backend_src_common_metrics_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller_getmetrics", "to": "backend_src_common_metrics_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller_getmetrics", "to": "backend_src_common_metrics_controller_ts_res", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_metrics_controller_metricscontroller_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_module", "to": "backend_src_common_revalidation_revalidation_module_revalidationmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_module", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_module", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_module_revalidationmodule", "to": "backend_src_common_revalidation_revalidation_module_ts_global", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_module_revalidationmodule", "to": "backend_src_common_revalidation_revalidation_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_spec", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_common_revalidation_revalidation_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice", "to": "backend_src_common_revalidation_revalidation_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice_constructor", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_spec", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice_constructor", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice_updatedosageconfig", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice_deletereview", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", "to": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_schemas_error_response_schema", "to": "backend_src_common_schemas_error_response_schema_apierrorresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_error_response_schema", "to": "backend_src_common_schemas_error_response_schema_errordetailfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_error_response_schema_errordetailfield", "to": "backend_src_common_schemas_error_response_schema_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_error_response_schema_apierrorresponse", "to": "backend_src_common_schemas_error_response_schema_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_paginated_response_schema", "to": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_paginated_response_schema", "to": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_paginated_response_schema", "to": "backend_src_common_schemas_paginated_response_schema_paginationmeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_paginated_response_schema_paginationmeta", "to": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", "to": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_events_constants", "to": "backend_src_common_services_sms_events_constants_default_sms_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_events_constants", "to": "backend_src_common_services_sms_events_constants_sms_event_definitions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_events_constants", "to": "backend_src_common_services_sms_events_constants_smseventdefinition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_events_constants", "to": "backend_src_common_services_sms_events_constants_smseventvariable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_events_constants", "to": "backend_src_common_services_sms_events_constants_smsrule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_events_constants", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_events_constants_smseventdefinition", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", "to": "backend_src_common_services_sms_events_constants_smseventdefinition", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_events_constants_sms_event_definitions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_events_constants_default_sms_rules", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_melipayamakpattern", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_melipayamakresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_sendpatternsmsoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_smsconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_smslogquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_smsrule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_sms_module", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_spec", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_spec", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_common_services_sms_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_common_services_sms_service_smslogquery", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getsmslogs", "to": "backend_src_common_services_sms_service_smslogquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_addpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_deletesmslog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_editpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_getcredit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_getpatterns", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_getsmslogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_postasmx", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_recordlog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_savelocalpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_sendsms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_testrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_testsms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice", "to": "backend_src_common_services_sms_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_sms_module", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_spec", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_spec", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_common_services_sms_service_smsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", "to": "backend_src_common_services_sms_service_smsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_addpattern", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_editpattern", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_getcredit", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_getpatterns", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendotp", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendsms", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_testrule", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_testsms", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_triggerevent", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getsmssettings", "to": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_triggerevent", "to": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_triggerevent", "to": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_triggerevent", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_triggerevent", "to": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice_submitcontactform", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_service_ordersservice_create", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_service_ordersservice_retrypayment", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_service_ordersservice_updatestatus", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_adminmanualverify", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_service_usersservice_topupwallet", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", "to": "backend_src_common_services_sms_service_smsservice_triggerevent", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_service_settingsservice_getsmsevents", "to": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_testrule", "to": "backend_src_common_services_sms_service_smsservice_testsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_testsmsrule", "to": "backend_src_common_services_sms_service_smsservice_testrule", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_addpattern", "to": "backend_src_common_services_sms_service_smsservice_postasmx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_editpattern", "to": "backend_src_common_services_sms_service_smsservice_postasmx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_getpatterns", "to": "backend_src_common_services_sms_service_smsservice_postasmx", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "to": "backend_src_common_services_sms_service_smsservice_recordlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendsms", "to": "backend_src_common_services_sms_service_smsservice_recordlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_testsms", "to": "backend_src_common_services_sms_service_smsservice_recordlog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getsmslogs", "to": "backend_src_common_services_sms_service_smsservice_getsmslogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_service_settingsservice_deletesmslog", "to": "backend_src_common_services_sms_service_smsservice_deletesmslog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", "to": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_getpatterns", "to": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getsmscredit", "to": "backend_src_common_services_sms_service_smsservice_getcredit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", "to": "backend_src_common_services_sms_service_smsservice_getpatterns", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "to": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_testsms", "to": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getpatterns", "to": "backend_src_common_services_sms_service_smsservice_getpatterns", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_addpattern", "to": "backend_src_common_services_sms_service_smsservice_savelocalpattern", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_addpattern", "to": "backend_src_common_services_sms_service_smsservice_addpattern", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_editpattern", "to": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_editpattern", "to": "backend_src_common_services_sms_service_smsservice_editpattern", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendotp", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_testsms", "to": "backend_src_common_services_sms_service_smsservice_testsms", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", "to": "backend_src_common_services_sms_service_smsservice_sendsms", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", "to": "backend_src_common_services_sms_service_smsservice_sendsms", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_common_sms_module", "to": "backend_src_common_sms_module_smsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_common_sms_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_common_sms_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_sms_module_smsmodule", "to": "backend_src_common_sms_module_ts_global", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_sms_module_smsmodule", "to": "backend_src_common_sms_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_common_sms_module_smsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_common_sms_module_smsmodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_phone_utils", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_common_utils_phone_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_update", "to": "backend_src_common_utils_phone_utils_normalizemobile", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_pricing_utils", "to": "backend_src_common_utils_pricing_utils_applyrounding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_pricing_utils", "to": "backend_src_common_utils_pricing_utils_calculatesellingprice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_pricing_utils", "to": "backend_src_common_utils_pricing_utils_default_pricing_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_pricing_utils", "to": "backend_src_common_utils_pricing_utils_pricingsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_pricing_utils", "to": "backend_src_common_utils_pricing_utils_roundingmode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_utils_pricing_utils_calculatesellingprice", "to": "backend_src_common_utils_pricing_utils_applyrounding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_contact_contact_controller_contactcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_contact_contact_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller", "to": "backend_src_contact_contact_service_contactservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_contact_contact_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_contactcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller", "to": "backend_src_contact_contact_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_contact_contact_controller_contactcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "to": "backend_src_contact_contact_controller_ts_throttle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "to": "backend_src_contact_contact_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "to": "backend_src_contact_contact_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "to": "backend_src_contact_contact_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "to": "backend_src_contact_contact_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "to": "backend_src_contact_contact_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", "to": "backend_src_contact_contact_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "to": "backend_src_contact_contact_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "to": "backend_src_contact_contact_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "to": "backend_src_contact_contact_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "to": "backend_src_contact_contact_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "to": "backend_src_contact_contact_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "to": "backend_src_contact_contact_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "to": "backend_src_contact_contact_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_constructor", "to": "backend_src_contact_contact_service_contactservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "to": "backend_src_contact_contact_service_contactservice_submitcontactform", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", "to": "backend_src_contact_contact_service_contactservice_getcontactinfo", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "to": "backend_src_contact_contact_service_contactservice_getallsubmissions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", "to": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "to": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_contact_contact_module_contactmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_contact_contact_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module", "to": "backend_src_contact_contact_service_contactservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_module_contactmodule", "to": "backend_src_contact_contact_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_contact_contact_service_contactservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_contact_contact_service_createcontactsubmissiondto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_contact_contact_service_updatecontactinfoitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_contactservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_contactservice_getallsubmissions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_contactservice_getcontactinfo", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_contactservice_submitcontactform", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice", "to": "backend_src_contact_contact_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", "to": "backend_src_contact_contact_service_contactservice_getcontactinfo", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_doctors_doctors_controller_doctorscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_doctors_doctors_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_doctors_doctors_service_doctorsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_doctors_dto_doctor_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller", "to": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_doctors_doctors_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_doctorscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_doctorscontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller", "to": "backend_src_doctors_doctors_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_doctors_doctors_controller_doctorscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "to": "backend_src_doctors_doctors_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "to": "backend_src_doctors_doctors_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_create", "to": "backend_src_doctors_doctors_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "to": "backend_src_doctors_doctors_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "to": "backend_src_doctors_doctors_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "to": "backend_src_doctors_doctors_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "to": "backend_src_doctors_doctors_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "to": "backend_src_doctors_doctors_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "to": "backend_src_doctors_doctors_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_create", "to": "backend_src_doctors_doctors_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_create", "to": "backend_src_doctors_doctors_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "to": "backend_src_doctors_doctors_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_create", "to": "backend_src_doctors_doctors_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "to": "backend_src_doctors_doctors_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_create", "to": "backend_src_doctors_doctors_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "to": "backend_src_doctors_doctors_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", "to": "backend_src_doctors_doctors_service_doctorsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "to": "backend_src_doctors_doctors_service_doctorsservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "to": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "to": "backend_src_doctors_doctors_service_doctorsservice_findone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_create", "to": "backend_src_doctors_doctors_service_doctorsservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_update", "to": "backend_src_doctors_doctors_service_doctorsservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "to": "backend_src_doctors_doctors_service_doctorsservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_doctors_doctors_module_doctorsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_doctors_doctors_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_doctors_doctors_service_doctorsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_module_doctorsmodule", "to": "backend_src_doctors_doctors_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service", "to": "backend_src_doctors_doctors_service_doctorsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service", "to": "backend_src_doctors_dto_doctor_query_dto", "label": "re_exports", "title": "re_exports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service", "to": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_doctorsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_doctorsservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_doctorsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_doctorsservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_doctorsservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_doctorsservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice", "to": "backend_src_doctors_doctors_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice_findall", "to": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice_remove", "to": "backend_src_doctors_doctors_service_doctorsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_doctors_service_doctorsservice_update", "to": "backend_src_doctors_doctors_service_doctorsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto", "to": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_isint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_transform", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", "to": "backend_src_doctors_dto_doctor_query_dto_ts_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_faq_faq_controller_faqcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_faq_faq_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller", "to": "backend_src_faq_faq_service_faqservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_module", "to": "backend_src_faq_faq_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_findactive", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_reorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_faqcontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller", "to": "backend_src_faq_faq_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_module", "to": "backend_src_faq_faq_controller_faqcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findactive", "to": "backend_src_faq_faq_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findall", "to": "backend_src_faq_faq_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_faq_faq_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findactive", "to": "backend_src_faq_faq_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findall", "to": "backend_src_faq_faq_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_faq_faq_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_faq_faq_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_faq_faq_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findall", "to": "backend_src_faq_faq_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_faq_faq_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_faq_faq_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_faq_faq_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findall", "to": "backend_src_faq_faq_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_faq_faq_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_faq_faq_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_faq_faq_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_faq_faq_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_faq_faq_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_faq_faq_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_faq_faq_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_faq_faq_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_constructor", "to": "backend_src_faq_faq_service_faqservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findactive", "to": "backend_src_faq_faq_service_faqservice_findactive", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_findall", "to": "backend_src_faq_faq_service_faqservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_create", "to": "backend_src_faq_faq_service_faqservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_reorder", "to": "backend_src_faq_faq_service_faqservice_reorder", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_update", "to": "backend_src_faq_faq_service_faqservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_faq_faq_controller_faqcontroller_remove", "to": "backend_src_faq_faq_service_faqservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_faq_faq_module", "to": "backend_src_faq_faq_module_faqmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_module", "to": "backend_src_faq_faq_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_module", "to": "backend_src_faq_faq_service_faqservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_module_faqmodule", "to": "backend_src_faq_faq_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service", "to": "backend_src_faq_faq_service_faqservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_findactive", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_reorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_faqservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice", "to": "backend_src_faq_faq_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_faq_faq_service_faqservice_reorder", "to": "backend_src_faq_faq_service_faqservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_dto_create_home_dto", "to": "backend_src_home_dto_create_home_dto_createhomedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_dto_update_home_dto", "to": "backend_src_home_dto_create_home_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_dto_update_home_dto", "to": "backend_src_home_dto_create_home_dto_createhomedto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_dto_update_home_dto", "to": "backend_src_home_dto_update_home_dto_updatehomedto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_entities_home_entity", "to": "backend_src_home_entities_home_entity_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller", "to": "backend_src_home_home_controller_homecontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller", "to": "backend_src_home_home_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller", "to": "backend_src_home_home_service_homeservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_module", "to": "backend_src_home_home_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller", "to": "backend_src_home_home_controller_homecontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller", "to": "backend_src_home_home_controller_homecontroller_gethomedata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller", "to": "backend_src_home_home_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller", "to": "backend_src_home_home_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_module", "to": "backend_src_home_home_controller_homecontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller_gethomedata", "to": "backend_src_home_home_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller_gethomedata", "to": "backend_src_home_home_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller_gethomedata", "to": "backend_src_home_home_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller_constructor", "to": "backend_src_home_home_service_homeservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_controller_homecontroller_gethomedata", "to": "backend_src_home_home_service_homeservice_gethomedata", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_home_home_module", "to": "backend_src_home_home_module_homemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_module", "to": "backend_src_home_home_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_module", "to": "backend_src_home_home_service_homeservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_module_homemodule", "to": "backend_src_home_home_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service", "to": "backend_src_home_home_service_homeservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service_homeservice", "to": "backend_src_home_home_service_homeservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service_homeservice", "to": "backend_src_home_home_service_homeservice_gethomedata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service_homeservice", "to": "backend_src_home_home_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_home_home_service_homeservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_ingredients_ingredients_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller", "to": "backend_src_ingredients_ingredients_service_ingredientsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_ingredients_ingredients_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "to": "backend_src_ingredients_ingredients_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", "to": "backend_src_ingredients_ingredients_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", "to": "backend_src_ingredients_ingredients_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", "to": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", "to": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", "to": "backend_src_ingredients_ingredients_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_ingredients_ingredients_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_ingredients_ingredients_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_ingredients_ingredients_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_ingredients_ingredients_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_ingredients_ingredients_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_ingredients_ingredients_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", "to": "backend_src_ingredients_ingredients_service_ingredientsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_ingredients_ingredients_module_ingredientsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_ingredients_ingredients_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_ingredients_ingredients_service_ingredientsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_module_ingredientsmodule", "to": "backend_src_ingredients_ingredients_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service", "to": "backend_src_ingredients_ingredients_service_ingredientsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ingredientsservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice", "to": "backend_src_ingredients_ingredients_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_main", "to": "backend_src_main_bootstrap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_menu_menu_controller_menucontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_menu_menu_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller", "to": "backend_src_menu_menu_service_menuservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_module", "to": "backend_src_menu_menu_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_findalladmin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_findbytype", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_reorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_menucontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller", "to": "backend_src_menu_menu_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_module", "to": "backend_src_menu_menu_controller_menucontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytype", "to": "backend_src_menu_menu_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "to": "backend_src_menu_menu_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytype", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytype", "to": "backend_src_menu_menu_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytype", "to": "backend_src_menu_menu_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "to": "backend_src_menu_menu_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_menu_menu_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_menu_menu_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_menu_menu_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_menu_menu_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_menu_menu_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_menu_menu_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_menu_menu_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_menu_menu_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_menu_menu_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_menu_menu_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_menu_menu_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_menu_menu_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_constructor", "to": "backend_src_menu_menu_service_menuservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytype", "to": "backend_src_menu_menu_service_menuservice_findbytype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "to": "backend_src_menu_menu_service_menuservice_findbytype", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_controller_menucontroller_findalladmin", "to": "backend_src_menu_menu_service_menuservice_findalladmin", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_controller_menucontroller_create", "to": "backend_src_menu_menu_service_menuservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_controller_menucontroller_reorder", "to": "backend_src_menu_menu_service_menuservice_reorder", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_controller_menucontroller_update", "to": "backend_src_menu_menu_service_menuservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_controller_menucontroller_remove", "to": "backend_src_menu_menu_service_menuservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_menu_menu_module", "to": "backend_src_menu_menu_module_menumodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_module", "to": "backend_src_menu_menu_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_module", "to": "backend_src_menu_menu_service_menuservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_module_menumodule", "to": "backend_src_menu_menu_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service", "to": "backend_src_menu_menu_service_menuservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service", "to": "backend_src_menu_menu_service_menutype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_findalladmin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_findbytype", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_onmoduleinit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_reorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_seedifempty", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_menuservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice", "to": "backend_src_menu_menu_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice_onmoduleinit", "to": "backend_src_menu_menu_service_menuservice_seedifempty", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice_seedifempty", "to": "backend_src_menu_menu_service_menuservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_menu_menu_service_menuservice_reorder", "to": "backend_src_menu_menu_service_menuservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto", "to": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto", "to": "backend_src_orders_dto_create_order_dto_orderitemdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_orders_dto_create_order_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_orders_dto_create_order_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_orderitemdto", "to": "backend_src_orders_dto_create_order_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_orderitemdto", "to": "backend_src_orders_dto_create_order_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_orderitemdto", "to": "backend_src_orders_dto_create_order_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_orderitemdto", "to": "backend_src_orders_dto_create_order_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_isarray", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "backend_src_orders_dto_create_order_dto_ts_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_dto_create_order_dto_createorderdto", "to": "validatenested", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_create", "to": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_spec", "to": "backend_src_orders_orders_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_spec", "to": "backend_src_orders_orders_controller_orderscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_spec", "to": "backend_src_orders_orders_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_spec", "to": "backend_src_orders_orders_service_ordersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_orders_orders_controller_orderscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_orders_orders_controller_validatecoupondto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_orders_orders_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller", "to": "backend_src_orders_orders_service_ordersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_module", "to": "backend_src_orders_orders_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_validatecoupondto", "to": "backend_src_orders_orders_controller_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_validatecoupondto", "to": "backend_src_orders_orders_controller_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_validatecoupondto", "to": "backend_src_orders_orders_controller_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_orderscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_orderscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_orderscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_orderscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "backend_src_orders_orders_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_module", "to": "backend_src_orders_orders_controller_orderscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_orders_orders_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_controller_ts_apicreatedresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_orders_orders_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findone", "to": "backend_src_orders_orders_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_orders_orders_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_orders_orders_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_orders_orders_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_apinotfoundresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findone", "to": "backend_src_orders_orders_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_constructor", "to": "backend_src_orders_orders_service_ordersservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_create", "to": "backend_src_orders_orders_service_ordersservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "to": "backend_src_orders_orders_service_ordersservice_validatecoupon", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findall", "to": "backend_src_orders_orders_service_ordersservice_findallbyuser", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_retrypayment", "to": "backend_src_orders_orders_service_ordersservice_retrypayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_controller_orderscontroller_findone", "to": "backend_src_orders_orders_service_ordersservice_findone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_orders_orders_module", "to": "backend_src_orders_orders_module_ordersmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_module", "to": "backend_src_orders_orders_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_module", "to": "backend_src_orders_orders_service_ordersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_module_ordersmodule", "to": "backend_src_orders_orders_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_spec", "to": "backend_src_orders_orders_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_spec", "to": "backend_src_orders_orders_service_ordersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_orders_orders_service_ordersservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_buildordereventdata", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_findallbyuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_retrypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_updatestatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ordersservice_validatecoupon", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice", "to": "backend_src_orders_orders_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_create", "to": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_create", "to": "backend_src_orders_orders_service_ordersservice_validatecoupon", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_create", "to": "backend_src_orders_orders_service_ordersservice_buildordereventdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_retrypayment", "to": "backend_src_orders_orders_service_ordersservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_retrypayment", "to": "backend_src_orders_orders_service_ordersservice_buildordereventdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_orders_orders_service_ordersservice_updatestatus", "to": "backend_src_orders_orders_service_ordersservice_buildordereventdata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_admin_transaction_filter_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_payment_dto_admin_transaction_filter_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "to": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_getadmintransactions", "to": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto", "to": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_ebank_checkout_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "to": "backend_src_payment_dto_ebank_checkout_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto", "to": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto", "to": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_initiate_payment_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "to": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_verify_payment_dto", "to": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_verify_payment_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "to": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "to": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "to": "backend_src_payment_dto_verify_payment_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface", "to": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestpayment", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_checkhealth", "to": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_payment_controller_paymentcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_payment_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_payment_service_paymentservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_zibal_ebank_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_zibal_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller", "to": "backend_src_payment_zibal_service_zibalservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_payment_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller", "to": "backend_src_payment_payment_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_payment_controller_paymentcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "to": "backend_src_payment_payment_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "to": "backend_src_payment_payment_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "to": "backend_src_payment_payment_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "to": "backend_src_payment_payment_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "to": "ip", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "headers", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "headers", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "headers", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "headers", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "to": "headers", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "to": "backend_src_payment_payment_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "to": "backend_src_payment_payment_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_controller_ts_res", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "backend_src_payment_payment_controller_ts_res", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "to": "backend_src_payment_payment_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_payment_payment_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_payment_payment_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_constructor", "to": "backend_src_payment_payment_service_paymentservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_constructor", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_constructor", "to": "backend_src_payment_zibal_service_zibalservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", "to": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", "to": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "to": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "to": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", "to": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "to": "backend_src_payment_payment_service_paymentservice_gettransaction", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "to": "backend_src_payment_zibal_service_zibalservice_getwalletlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "to": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "to": "backend_src_payment_zibal_service_zibalservice_inquirerefund", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "to": "backend_src_payment_zibal_service_zibalservice_getrefundlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "to": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "to": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "to": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "to": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "to": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "to": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "to": "backend_src_payment_payment_service_paymentservice_getadmintransactions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "to": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "to": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "to": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "to": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "to": "backend_src_payment_payment_service_paymentservice_adminmanualverify", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "to": "backend_src_payment_payment_service_paymentservice_adminmanualreject", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "to": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_payment_module_paymentmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_payment_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_payment_service_paymentservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_zibal_ebank_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_zibal_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_payment_zibal_service_zibalservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_module_paymentmodule", "to": "backend_src_payment_payment_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_payment_payment_service_clientmetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_payment_payment_service_paymentservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_payment_zibal_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_payment_zibal_service_zibalservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_adminmanualreject", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_adminmanualverify", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_getadmintransactions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_gettransaction", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice", "to": "backend_src_payment_payment_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_constructor", "to": "backend_src_payment_zibal_service_zibalservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "to": "backend_src_payment_zibal_service_zibalservice_getbackendurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "to": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "to": "backend_src_payment_zibal_service_zibalservice_getstarturl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", "to": "backend_src_payment_zibal_service_zibalservice_requestpayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "to": "backend_src_payment_zibal_service_zibalservice_getbackendurl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "to": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "to": "backend_src_payment_zibal_service_zibalservice_getstarturl", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", "to": "backend_src_payment_zibal_service_zibalservice_requestpayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "to": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", "to": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "to": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "to": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "to": "backend_src_payment_zibal_service_zibalservice_verifypayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", "to": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", "to": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "to": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "to": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "to": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "to": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "to": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "to": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", "to": "backend_src_payment_zibal_service_zibalservice_checkhealth", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", "to": "backend_src_payment_zibal_service_zibalservice_requestrefund", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", "to": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_zibal_service_zibalinquiryresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_zibal_service_zibalrequestresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_zibal_service_zibalservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_payment_zibal_service_zibalverifyresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_checkhealth", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getaccesstoken", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getbackendurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getgatewayname", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getrefundlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getresultmessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getstarturl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getwalletbalance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_getwalletlist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_inquirerefund", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_requestpayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_requestrefund", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice", "to": "backend_src_payment_zibal_service_zibalservice_verifypayment", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "to": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", "to": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestpayment", "to": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", "to": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_verifypayment", "to": "backend_src_payment_zibal_service_zibalservice_callwithretry", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_apirequest", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_checkhealth", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getrefundlist", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_inquirerefund", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_inquirypayment", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestpayment", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestrefund", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_verifypayment", "to": "backend_src_payment_zibal_service_zibalservice_getmerchant", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getbackendurl", "to": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_apirequest", "to": "backend_src_payment_zibal_service_zibalservice_getaccesstoken", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getrefundlist", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getwalletbalance", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_getwalletlist", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_inquirerefund", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_payment_zibal_service_zibalservice_requestrefund", "to": "backend_src_payment_zibal_service_zibalservice_apirequest", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_health_log_dto", "to": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_create_health_log_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "to": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "to": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "to": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "to": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "to": "backend_src_pets_dto_create_health_log_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "to": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto", "to": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_update_pet_dto", "to": "backend_src_pets_dto_create_pet_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_create_pet_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_dto_create_pet_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_isarray", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_pet_dto_createpetdto", "to": "backend_src_pets_dto_create_pet_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_update_pet_dto", "to": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_create", "to": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_reminder_dto", "to": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_create_reminder_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "to": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "to": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "to": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "to": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "to": "backend_src_pets_dto_create_reminder_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addreminder", "to": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_dto_update_pet_dto", "to": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_update_pet_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_dto_update_pet_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_update", "to": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_spec", "to": "backend_src_pets_pets_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_spec", "to": "backend_src_pets_pets_controller_petscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_spec", "to": "backend_src_pets_pets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_spec", "to": "backend_src_pets_pets_service_petsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_pets_controller_petscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_pets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller", "to": "backend_src_pets_pets_service_petsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_module", "to": "backend_src_pets_pets_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_addreminder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_togglereminder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "backend_src_pets_pets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_module", "to": "backend_src_pets_pets_controller_petscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "to": "backend_src_pets_pets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addreminder", "to": "backend_src_pets_pets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_pets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_togglereminder", "to": "backend_src_pets_pets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "to": "backend_src_pets_pets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "to": "backend_src_pets_pets_controller_ts_useinterceptors", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addreminder", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findall", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findone", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_remove", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_togglereminder", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "to": "backend_src_pets_pets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", "to": "backend_src_pets_pets_controller_ts_uploadedfile", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_pets_controller_ts_apicreatedresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_pets_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addreminder", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findall", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findone", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_remove", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_togglereminder", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "to": "backend_src_pets_pets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addreminder", "to": "backend_src_pets_pets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_create", "to": "backend_src_pets_pets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_togglereminder", "to": "backend_src_pets_pets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findall", "to": "backend_src_pets_pets_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findone", "to": "backend_src_pets_pets_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findall", "to": "backend_src_pets_pets_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findone", "to": "backend_src_pets_pets_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_remove", "to": "backend_src_pets_pets_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findall", "to": "backend_src_pets_pets_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findone", "to": "backend_src_pets_pets_controller_ts_apinotfoundresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_remove", "to": "backend_src_pets_pets_controller_ts_apinotfoundresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_apinotfoundresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "to": "backend_src_pets_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_addreminder", "to": "backend_src_pets_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_findone", "to": "backend_src_pets_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_remove", "to": "backend_src_pets_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_togglereminder", "to": "backend_src_pets_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_update", "to": "backend_src_pets_pets_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_remove", "to": "backend_src_pets_pets_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_controller_petscontroller_constructor", "to": "backend_src_pets_pets_service_petsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_module", "to": "backend_src_pets_pets_module_petsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_module", "to": "backend_src_pets_pets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_module", "to": "backend_src_pets_pets_service_petsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_module_petsmodule", "to": "backend_src_pets_pets_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_spec", "to": "backend_src_pets_pets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_spec", "to": "backend_src_pets_pets_service_petsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_pets_service_healthloginput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_pets_service_petsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_pets_pets_service_reminderinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_addhealthlog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_addreminder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_findalladmin", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_findallbyuser", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_togglereminder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_petsservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice", "to": "backend_src_pets_pets_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_addhealthlog", "to": "backend_src_pets_pets_service_petsservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_addreminder", "to": "backend_src_pets_pets_service_petsservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_togglereminder", "to": "backend_src_pets_pets_service_petsservice_create", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_addhealthlog", "to": "backend_src_pets_pets_service_petsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_addreminder", "to": "backend_src_pets_pets_service_petsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_remove", "to": "backend_src_pets_pets_service_petsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_togglereminder", "to": "backend_src_pets_pets_service_petsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_pets_pets_service_petsservice_update", "to": "backend_src_pets_pets_service_petsservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_prescriptions_prescriptions_controller_userreqpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_prescriptions_prescriptions_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prescriptions_prescriptions_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "to": "backend_src_prescriptions_prescriptions_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "to": "backend_src_prescriptions_prescriptions_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "to": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "to": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "to": "backend_src_prescriptions_prescriptions_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "to": "backend_src_prescriptions_prescriptions_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "to": "backend_src_prescriptions_prescriptions_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_prescriptions_prescriptions_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "to": "backend_src_prescriptions_prescriptions_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_prescriptions_prescriptions_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "to": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "to": "backend_src_prescriptions_prescriptions_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_prescriptions_prescriptions_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_prescriptions_prescriptions_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prescriptions_prescriptions_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", "to": "backend_src_prescriptions_prescriptions_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "to": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "to": "backend_src_prescriptions_prescriptions_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_module", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_module", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_prisma_prisma_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_module_prismamodule", "to": "backend_src_prisma_prisma_module_ts_global", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_module_prismamodule", "to": "backend_src_prisma_prisma_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_prisma_prisma_module_prismamodule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_spec", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service", "to": "backend_src_prisma_prisma_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_service_prismaservice", "to": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_service_prismaservice", "to": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_service_prismaservice", "to": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_service_prismaservice", "to": "backend_src_prisma_prisma_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service_seoservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_spec", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service_wikiservice_constructor", "to": "backend_src_prisma_prisma_service_prismaservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", "to": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto", "to": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_products_dto_get_products_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_products_dto_get_products_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto_getproductsdto", "to": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto_getproductsdto", "to": "backend_src_products_dto_get_products_dto_ts_isenum", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto_getproductsdto", "to": "backend_src_products_dto_get_products_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_dto_get_products_dto_getproductsdto", "to": "backend_src_products_dto_get_products_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findall", "to": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice_findall", "to": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_spec", "to": "backend_src_products_products_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_spec", "to": "backend_src_products_products_controller_productscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_spec", "to": "backend_src_products_products_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_spec", "to": "backend_src_products_products_service_productsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_products_products_controller_productscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_products_products_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller", "to": "backend_src_products_products_service_productsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_products_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_getactivefilters", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_getdosageconfig", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_getnavigationfilters", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "backend_src_products_products_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_products_controller_productscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findall", "to": "backend_src_products_products_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findone", "to": "backend_src_products_products_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getactivefilters", "to": "backend_src_products_products_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getdosageconfig", "to": "backend_src_products_products_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getnavigationfilters", "to": "backend_src_products_products_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findall", "to": "backend_src_products_products_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findone", "to": "backend_src_products_products_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getactivefilters", "to": "backend_src_products_products_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getdosageconfig", "to": "backend_src_products_products_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getnavigationfilters", "to": "backend_src_products_products_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_products_products_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findall", "to": "backend_src_products_products_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findone", "to": "backend_src_products_products_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_getdosageconfig", "to": "backend_src_products_products_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_products_products_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_products_products_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_products_products_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_products_products_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_constructor", "to": "backend_src_products_products_service_productsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_controller_productscontroller_findall", "to": "backend_src_products_products_service_productsservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_products_products_controller_productscontroller_getactivefilters", "to": "backend_src_products_products_service_productsservice_getactivefilters", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_products_products_controller_productscontroller_getnavigationfilters", "to": "backend_src_products_products_service_productsservice_getnavigationfilters", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_products_products_controller_productscontroller_getdosageconfig", "to": "backend_src_products_products_service_productsservice_getdosageconfig", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "to": "backend_src_products_products_service_productsservice_updatedosageconfig", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_products_products_controller_productscontroller_findone", "to": "backend_src_products_products_service_productsservice_findone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_products_module_productsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_products_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_products_service_productsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_torob_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module", "to": "backend_src_products_torob_controller_torobcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_module_productsmodule", "to": "backend_src_products_products_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_spec", "to": "backend_src_products_products_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_spec", "to": "backend_src_products_products_service_productsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service", "to": "backend_src_products_products_service_productsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_getactivefilters", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_getdosageconfig", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_getnavigationfilters", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_productsservice_updatedosageconfig", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_products_service_productsservice", "to": "backend_src_products_products_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller", "to": "backend_src_products_torob_controller_buildtorobproductspec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller", "to": "backend_src_products_torob_controller_buildtorobproducttitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller", "to": "backend_src_products_torob_controller_torobcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "to": "backend_src_products_torob_controller_buildtorobproducttitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "to": "backend_src_products_torob_controller_buildtorobproductspec", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller", "to": "backend_src_products_torob_controller_torobcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller", "to": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller", "to": "backend_src_products_torob_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller", "to": "backend_src_products_torob_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "to": "backend_src_products_torob_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "to": "backend_src_products_torob_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "to": "backend_src_products_torob_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_module", "to": "backend_src_redis_redis_module_redismodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_module", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_module", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_module_redismodule", "to": "backend_src_redis_redis_module_ts_global", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_module_redismodule", "to": "backend_src_redis_redis_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_spec", "to": "backend_src_redis_redis_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_spec", "to": "backend_src_redis_redis_service_redisservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service", "to": "backend_src_redis_redis_service_redisservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_del", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_get", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_incr", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_onmoduledestroy", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_onmoduleinit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_set", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_redisservice_ttl", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_redis_redis_service_redisservice", "to": "backend_src_redis_redis_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto", "to": "backend_src_reviews_dto_create_review_dto_createreviewdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_dto_create_review_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_reviews_dto_create_review_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "backend_src_reviews_dto_create_review_dto_ts_isint", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "backend_src_reviews_dto_create_review_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "backend_src_reviews_dto_create_review_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "backend_src_reviews_dto_create_review_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "backend_src_reviews_dto_create_review_dto_ts_min", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_create_review_dto_createreviewdto", "to": "max", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_dto_create_review_dto_createreviewdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_dto_create_review_dto_createreviewdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_reviews_dto_create_review_dto_createreviewdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice_createreview", "to": "backend_src_reviews_dto_create_review_dto_createreviewdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_update_review_dto", "to": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_dto_update_review_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_reviews_dto_update_review_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "to": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "to": "backend_src_reviews_dto_update_review_dto_ts_isin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "to": "backend_src_reviews_dto_update_review_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "to": "backend_src_reviews_dto_update_review_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", "to": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_reviews_controller_reviewscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_reviews_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller", "to": "backend_src_reviews_reviews_service_reviewsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_reviews_reviews_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller", "to": "backend_src_reviews_reviews_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_reviews_reviews_controller_reviewscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_controller_ts_throttle", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_reviews_reviews_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_reviews_reviews_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "to": "backend_src_reviews_reviews_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_reviews_reviews_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "to": "backend_src_reviews_reviews_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_reviews_reviews_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "to": "backend_src_reviews_reviews_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_reviews_reviews_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "to": "backend_src_reviews_reviews_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_reviews_reviews_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_reviews_reviews_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_reviews_reviews_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_reviews_reviews_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_reviews_reviews_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", "to": "backend_src_reviews_reviews_service_reviewsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "to": "backend_src_reviews_reviews_service_reviewsservice_createreview", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "to": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "to": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "to": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "to": "backend_src_reviews_reviews_service_reviewsservice_deletereview", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_reviews_reviews_module_reviewsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_reviews_reviews_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module", "to": "backend_src_reviews_reviews_service_reviewsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_module_reviewsmodule", "to": "backend_src_reviews_reviews_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service", "to": "backend_src_reviews_reviews_service_reviewsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_reviewsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_reviewsservice_createreview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_reviewsservice_deletereview", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_reviews_reviews_service_reviewsservice", "to": "backend_src_reviews_reviews_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller", "to": "backend_src_seo_seo_controller_seocontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller", "to": "backend_src_seo_seo_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller", "to": "backend_src_seo_seo_service_seoservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_seo_seo_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller", "to": "backend_src_seo_seo_controller_seocontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller", "to": "backend_src_seo_seo_controller_seocontroller_getproductschema", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller", "to": "backend_src_seo_seo_controller_seocontroller_getsitemap", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller", "to": "backend_src_seo_seo_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller", "to": "backend_src_seo_seo_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_seo_seo_controller_seocontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getproductschema", "to": "backend_src_seo_seo_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getsitemap", "to": "backend_src_seo_seo_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getproductschema", "to": "backend_src_seo_seo_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getsitemap", "to": "backend_src_seo_seo_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getproductschema", "to": "backend_src_seo_seo_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_constructor", "to": "backend_src_seo_seo_service_seoservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getsitemap", "to": "backend_src_seo_seo_service_seoservice_getsitemapurls", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_seo_seo_controller_seocontroller_getproductschema", "to": "backend_src_seo_seo_service_seoservice_getproductschema", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_seo_seo_module_seomodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_seo_seo_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module", "to": "backend_src_seo_seo_service_seoservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_module_seomodule", "to": "backend_src_seo_seo_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service", "to": "backend_src_seo_seo_service_seoservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service_seoservice", "to": "backend_src_seo_seo_service_seoservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service_seoservice", "to": "backend_src_seo_seo_service_seoservice_getproductschema", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service_seoservice", "to": "backend_src_seo_seo_service_seoservice_getsitemapurls", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_seo_seo_service_seoservice", "to": "backend_src_seo_seo_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_default_ui_texts", "to": "backend_src_settings_default_ui_texts_default_ui_texts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_settings_default_ui_texts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_settings_default_ui_texts_default_ui_texts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto", "to": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_settings_dto_sms_log_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "to": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "to": "backend_src_settings_dto_sms_log_query_dto_ts_isin", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "to": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "to": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "to": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "to": "backend_src_settings_dto_sms_log_query_dto_ts_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_settings_settings_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_settings_settings_controller_settingscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_settings_settings_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_spec", "to": "backend_src_settings_settings_service_settingsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_settings_settings_controller_settingscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_settings_settings_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_settings_settings_service_scientifictermdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller", "to": "backend_src_settings_settings_service_settingsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_settings_settings_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_addpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_editpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_putuitext", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_testsms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller", "to": "backend_src_settings_settings_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_settings_settings_controller_settingscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "to": "backend_src_settings_settings_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "to": "backend_src_settings_settings_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_settings_settings_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_settings_settings_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_settings_settings_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_settings_settings_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_settings_settings_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_settings_settings_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_settings_settings_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "to": "backend_src_settings_settings_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_settings_settings_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_settings_settings_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_settings_settings_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_settings_settings_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_settings_settings_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_settings_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_constructor", "to": "backend_src_settings_settings_service_settingsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "to": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putuitext", "to": "backend_src_settings_settings_service_settingsservice_updateuitext", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "to": "backend_src_settings_settings_service_settingsservice_updateuitext", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "to": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "to": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "to": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "to": "backend_src_settings_settings_service_settingsservice_getscientificterms", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_service_scientifictermdata", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "to": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "to": "backend_src_settings_settings_service_settingsservice_deletescientificterm", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "to": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "to": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "to": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "to": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "to": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "to": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "to": "backend_src_settings_settings_service_settingsservice_getsmssettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "to": "backend_src_settings_settings_service_settingsservice_getsmscredit", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "to": "backend_src_settings_settings_service_settingsservice_updatesmssettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsms", "to": "backend_src_settings_settings_service_settingsservice_testsms", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", "to": "backend_src_settings_settings_service_settingsservice_getsmsevents", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", "to": "backend_src_settings_settings_service_settingsservice_testsmsrule", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "to": "backend_src_settings_settings_service_settingsservice_getpatterns", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_addpattern", "to": "backend_src_settings_settings_service_settingsservice_addpattern", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_editpattern", "to": "backend_src_settings_settings_service_settingsservice_editpattern", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "to": "backend_src_settings_settings_service_settingsservice_getsmslogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "to": "backend_src_settings_settings_service_settingsservice_deletesmslog", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "to": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_settings_settings_module_settingsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_settings_settings_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module", "to": "backend_src_settings_settings_service_settingsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_module_settingsmodule", "to": "backend_src_settings_settings_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_spec", "to": "backend_src_settings_settings_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_spec", "to": "backend_src_settings_settings_service_settingsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_settings_settings_service_canonical_aliases", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_settings_settings_service_scientifictermdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service", "to": "backend_src_settings_settings_service_settingsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_addpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_deletescientificterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_deletesmslog", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_editpattern", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getpatterns", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getscientificterms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getsmscredit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getsmsevents", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getsmslogs", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getsmssettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_onmoduleinit", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_testsms", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_testsmsrule", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_updatesmssettings", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_updateuitext", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice", "to": "backend_src_settings_settings_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_onmoduleinit", "to": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getuitexts", "to": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "to": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", "to": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "to": "backend_src_settings_settings_service_settingsservice_updateuitext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "to": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", "to": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", "to": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_smart_advisor_smart_advisor_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_smart_advisor_smart_advisor_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_smart_advisor_smart_advisor_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", "to": "backend_src_smart_advisor_smart_advisor_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "to": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "to": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_testimonials_testimonials_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller", "to": "backend_src_testimonials_testimonials_service_testimonialsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_testimonials_testimonials_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "to": "backend_src_testimonials_testimonials_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", "to": "backend_src_testimonials_testimonials_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", "to": "backend_src_testimonials_testimonials_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", "to": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", "to": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_testimonials_testimonials_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_testimonials_testimonials_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_testimonials_testimonials_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_testimonials_testimonials_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_testimonials_testimonials_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_testimonials_testimonials_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", "to": "backend_src_testimonials_testimonials_service_testimonialsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_testimonials_testimonials_module_testimonialsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_testimonials_testimonials_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module", "to": "backend_src_testimonials_testimonials_service_testimonialsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_module_testimonialsmodule", "to": "backend_src_testimonials_testimonials_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service", "to": "backend_src_testimonials_testimonials_service_testimonialsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_testimonialsservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_testimonials_testimonials_service_testimonialsservice", "to": "backend_src_testimonials_testimonials_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto", "to": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto", "to": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto", "to": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_dto_create_ticket_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_dto_create_ticket_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice_createticket", "to": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "to": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", "to": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", "to": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_ticket_query_dto", "to": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_dto_ticket_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_dto_ticket_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "to": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "to": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "to": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "to": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "to": "backend_src_tickets_dto_ticket_query_dto_ts_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", "to": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_tickets_controller_ticketscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_tickets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller", "to": "backend_src_tickets_tickets_service_ticketsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_tickets_tickets_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller", "to": "backend_src_tickets_tickets_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_tickets_tickets_controller_ticketscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_tickets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "to": "backend_src_tickets_tickets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "to": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "to": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "to": "backend_src_tickets_tickets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_tickets_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "to": "backend_src_tickets_tickets_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_tickets_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", "to": "backend_src_tickets_tickets_service_ticketsservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "to": "backend_src_tickets_tickets_service_ticketsservice_createticket", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "to": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "to": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "to": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "to": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "to": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_tickets_tickets_module_ticketsmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_tickets_tickets_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module", "to": "backend_src_tickets_tickets_service_ticketsservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_module_ticketsmodule", "to": "backend_src_tickets_tickets_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service", "to": "backend_src_tickets_tickets_service_ticketsservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_createticket", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice", "to": "backend_src_tickets_tickets_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_tickets_tickets_service_ticketsservice_createticket", "to": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto", "to": "backend_src_users_dto_address_dto_addressdto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_dto_address_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto_addressdto", "to": "backend_src_users_dto_address_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto_addressdto", "to": "backend_src_users_dto_address_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto_addressdto", "to": "backend_src_users_dto_address_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto_addressdto", "to": "backend_src_users_dto_address_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto_addressdto", "to": "backend_src_users_dto_address_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_address_dto_addressdto", "to": "backend_src_users_dto_address_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_dto_address_dto_addressdto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_dto_address_dto_addressdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_dto_address_dto_addressdto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_update_profile_dto", "to": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_dto_update_profile_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_users_dto_update_profile_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_update_profile_dto_updateprofiledto", "to": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_update_profile_dto_updateprofiledto", "to": "backend_src_users_dto_update_profile_dto_ts_isemail", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_update_profile_dto_updateprofiledto", "to": "backend_src_users_dto_update_profile_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_update_profile_dto_updateprofiledto", "to": "backend_src_users_dto_update_profile_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_dto_update_profile_dto_updateprofiledto", "to": "backend_src_users_dto_update_profile_dto_ts_minlength", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_update", "to": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_spec", "to": "backend_src_users_users_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_spec", "to": "backend_src_users_users_controller_userscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_spec", "to": "backend_src_users_users_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_spec", "to": "backend_src_users_users_service_usersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_users_controller_userscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_users_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller", "to": "backend_src_users_users_service_usersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_module", "to": "backend_src_users_users_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_addaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_deleteaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_getprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_topupwallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_updateaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "backend_src_users_users_controller_userscontroller_updateprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_module", "to": "backend_src_users_users_controller_userscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_getprofile", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_getprofile", "to": "backend_src_users_users_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_getprofile", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_getprofile", "to": "backend_src_users_users_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_getprofile", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_req", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_patch", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_apibadrequestresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_controller_ts_apicreatedresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_controller_ts_apicreatedresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_constructor", "to": "backend_src_users_users_service_usersservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_controller_userscontroller_getprofile", "to": "backend_src_users_users_service_usersservice_findbyid", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_controller_userscontroller_updateprofile", "to": "backend_src_users_users_service_usersservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_controller_userscontroller_addaddress", "to": "backend_src_users_users_service_usersservice_addaddress", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_controller_userscontroller_updateaddress", "to": "backend_src_users_users_service_usersservice_updateaddress", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_controller_userscontroller_deleteaddress", "to": "backend_src_users_users_service_usersservice_deleteaddress", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "to": "backend_src_users_users_service_usersservice_setdefaultaddress", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_controller_userscontroller_topupwallet", "to": "backend_src_users_users_service_usersservice_topupwallet", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_users_users_module", "to": "backend_src_users_users_module_usersmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_module", "to": "backend_src_users_users_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_module", "to": "backend_src_users_users_service_usersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_module_usersmodule", "to": "backend_src_users_users_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_spec", "to": "backend_src_users_users_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_spec", "to": "backend_src_users_users_service_usersservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_users_users_service_useraddressinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service", "to": "backend_src_users_users_service_usersservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_addaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_deleteaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_findbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_findbyphone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_setdefaultaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_topupwallet", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice", "to": "backend_src_users_users_service_usersservice_updateaddress", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_constructor", "to": "backend_src_users_users_service_ts_optional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_setdefaultaddress", "to": "backend_src_users_users_service_usersservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_topupwallet", "to": "backend_src_users_users_service_usersservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_users_users_service_usersservice_updateaddress", "to": "backend_src_users_users_service_usersservice_update", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto", "to": "backend_src_videos_dto_create_video_dto_updatevideodto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_dto_create_video_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service", "to": "backend_src_videos_dto_create_video_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_createvideodto", "to": "backend_src_videos_dto_create_video_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_createvideodto", "to": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_createvideodto", "to": "backend_src_videos_dto_create_video_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_createvideodto", "to": "backend_src_videos_dto_create_video_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_createvideodto", "to": "backend_src_videos_dto_create_video_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_createvideodto", "to": "backend_src_videos_dto_create_video_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_create_video_dto_updatevideodto", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "inherits", "title": "inherits [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice_create", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice_update", "to": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto", "to": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_dto_get_videos_query_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "to": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "to": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "to": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "to": "backend_src_videos_dto_get_videos_query_dto_ts_transform", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findall", "to": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_videos_controller_videoscontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_videos_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller", "to": "backend_src_videos_videos_service_videosservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_module", "to": "backend_src_videos_videos_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_videoscontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_videoscontroller_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_videoscontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_videoscontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_videoscontroller_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller", "to": "backend_src_videos_videos_controller_videoscontroller_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_module", "to": "backend_src_videos_videos_controller_videoscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findall", "to": "backend_src_videos_videos_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findone", "to": "backend_src_videos_videos_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_videos_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findall", "to": "backend_src_videos_videos_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findone", "to": "backend_src_videos_videos_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_remove", "to": "backend_src_videos_videos_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findall", "to": "backend_src_videos_videos_controller_ts_apiquery", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findall", "to": "backend_src_videos_videos_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findone", "to": "backend_src_videos_videos_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_remove", "to": "backend_src_videos_videos_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_videos_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_videos_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_remove", "to": "backend_src_videos_videos_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_videos_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_remove", "to": "backend_src_videos_videos_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_videos_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_remove", "to": "backend_src_videos_videos_controller_ts_delete", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_constructor", "to": "backend_src_videos_videos_service_videosservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findall", "to": "backend_src_videos_videos_service_videosservice_findall", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_findone", "to": "backend_src_videos_videos_service_videosservice_findone", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_create", "to": "backend_src_videos_videos_service_videosservice_create", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_update", "to": "backend_src_videos_videos_service_videosservice_update", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_videos_videos_controller_videoscontroller_remove", "to": "backend_src_videos_videos_service_videosservice_remove", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_videos_videos_module", "to": "backend_src_videos_videos_module_videosmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_module", "to": "backend_src_videos_videos_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_module", "to": "backend_src_videos_videos_service_videosservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_module_videosmodule", "to": "backend_src_videos_videos_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service", "to": "backend_src_videos_videos_service_videoquery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service", "to": "backend_src_videos_videos_service_videosservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_videosservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_videosservice_create", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_videosservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_videosservice_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_videosservice_remove", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice", "to": "backend_src_videos_videos_service_videosservice_update", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice_remove", "to": "backend_src_videos_videos_service_videosservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_videos_videos_service_videosservice_update", "to": "backend_src_videos_videos_service_videosservice_findone", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_dto_wholesale_apply_dto", "to": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_wholesale_dto_wholesale_apply_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_wholesale_dto_wholesale_apply_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "to": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "to": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "to": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "to": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "to": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", "to": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_wholesale_wholesale_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller", "to": "backend_src_wholesale_wholesale_service_wholesaleservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_wholesale_wholesale_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_controller_ts_post", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "to": "backend_src_wholesale_wholesale_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_useguards", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "to": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "to": "backend_src_wholesale_wholesale_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_controller_ts_request", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_controller_ts_body", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "to": "backend_src_wholesale_wholesale_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_put", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_wholesale_wholesale_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", "to": "backend_src_wholesale_wholesale_service_wholesaleservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_wholesale_wholesale_module_wholesalemodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_wholesale_wholesale_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module", "to": "backend_src_wholesale_wholesale_service_wholesaleservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_module_wholesalemodule", "to": "backend_src_wholesale_wholesale_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service", "to": "backend_src_wholesale_wholesale_service_wholesaleservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice", "to": "backend_src_wholesale_wholesale_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wholesale_wholesale_service_wholesaleservice", "to": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_dto_create_wiki_dto", "to": "backend_src_wiki_dto_create_wiki_dto_createwikidto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_dto_update_wiki_dto", "to": "backend_src_wiki_dto_create_wiki_dto", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_dto_update_wiki_dto", "to": "backend_src_wiki_dto_create_wiki_dto_createwikidto", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_dto_update_wiki_dto", "to": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_entities_wiki_entity", "to": "backend_src_wiki_entities_wiki_entity_wiki", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller", "to": "backend_src_wiki_wiki_controller_wikicontroller", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller", "to": "backend_src_wiki_wiki_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller", "to": "backend_src_wiki_wiki_service_wikiservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_module", "to": "backend_src_wiki_wiki_controller", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller", "to": "backend_src_wiki_wiki_controller_ts_apitags", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller", "to": "backend_src_wiki_wiki_controller_ts_controller", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller", "to": "backend_src_wiki_wiki_controller_wikicontroller_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller", "to": "backend_src_wiki_wiki_controller_wikicontroller_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller", "to": "backend_src_wiki_wiki_controller_wikicontroller_findone", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_module", "to": "backend_src_wiki_wiki_controller_wikicontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findall", "to": "backend_src_wiki_wiki_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findone", "to": "backend_src_wiki_wiki_controller_ts_get", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findall", "to": "backend_src_wiki_wiki_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findone", "to": "backend_src_wiki_wiki_controller_ts_apioperation", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findall", "to": "backend_src_wiki_wiki_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findone", "to": "backend_src_wiki_wiki_controller_ts_apiokresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findall", "to": "backend_src_wiki_wiki_controller_ts_query", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findone", "to": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_findone", "to": "backend_src_wiki_wiki_controller_ts_param", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_controller_wikicontroller_constructor", "to": "backend_src_wiki_wiki_service_wikiservice", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_module", "to": "backend_src_wiki_wiki_module_wikimodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_module", "to": "backend_src_wiki_wiki_service", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_module", "to": "backend_src_wiki_wiki_service_wikiservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_module_wikimodule", "to": "backend_src_wiki_wiki_module_ts_module", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service", "to": "backend_src_wiki_wiki_service_wikiservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service_wikiservice", "to": "backend_src_wiki_wiki_service_ts_injectable", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service_wikiservice", "to": "backend_src_wiki_wiki_service_wikiservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service_wikiservice", "to": "backend_src_wiki_wiki_service_wikiservice_findall", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_wiki_wiki_service_wikiservice", "to": "backend_src_wiki_wiki_service_wikiservice_findonebykey", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_app_module_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_client_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_common_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_decimal_interceptor_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_fs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_http_exception_filter_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_jwt_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_prisma_exception_filter_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_supertest_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", "to": "backend_test_app_audit_verification_e2e_spec_testing_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", "to": "backend_test_app_e2e_spec_app_module_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", "to": "backend_test_app_e2e_spec_supertest_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", "to": "backend_test_app_e2e_spec_testing_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build", "to": "backend_tsconfig_build_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build", "to": "backend_tsconfig_build_extends", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build", "to": "ref_tsconfig_json", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "backend_tsconfig_build_json_ref_dist", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "backend_tsconfig_build_json_ref_node_modules", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "backend_tsconfig_build_json_ref_prisma", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "ref_spec_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "ref_test", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig", "to": "backend_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig", "to": "backend_tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig", "to": "backend_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_baseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_declaration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_emitdecoratormetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_experimentaldecorators", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_incremental", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_noimplicitany", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_outdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_removecomments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_resolvepackagejsonexports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_rootdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_sourcemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_strictbindcallapply", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_strictnullchecks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_compileroptions", "to": "backend_tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_include", "to": "backend_tsconfig_json_ref_src", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_exclude", "to": "backend_tsconfig_json_ref_dist", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_exclude", "to": "backend_tsconfig_json_ref_node_modules", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_exclude", "to": "backend_tsconfig_json_ref_prisma", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_exclude", "to": "ref_scripts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_build_manifest", "to": "docs_audit_build_manifest_entries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_build_manifest", "to": "docs_audit_build_manifest_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_classification", "to": "docs_audit_generate_classification_classified", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_classification", "to": "docs_audit_generate_classification_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_evidence", "to": "docs_audit_generate_evidence_classification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_evidence", "to": "docs_audit_generate_evidence_evidenceentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_ledger", "to": "docs_audit_generate_ledger_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_ledger", "to": "docs_audit_generate_ledger_ledgerentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_manifest", "to": "docs_audit_generate_manifest_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_generate_manifest", "to": "docs_audit_generate_manifest_manifestentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_rebuild_honest_ledger", "to": "docs_audit_rebuild_honest_ledger_evidencelist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_rebuild_honest_ledger", "to": "docs_audit_rebuild_honest_ledger_ledger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_rebuild_honest_ledger", "to": "docs_audit_rebuild_honest_ledger_mandatorymap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_rebuild_honest_ledger", "to": "docs_audit_rebuild_honest_ledger_mandatoryscope", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_sync_honest_manifest", "to": "docs_audit_sync_honest_manifest_ledger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_sync_honest_manifest", "to": "docs_audit_sync_honest_manifest_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_sync_manifest", "to": "docs_audit_sync_manifest_ledger", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_sync_manifest", "to": "docs_audit_sync_manifest_manifestentries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_evidence_grade", "to": "docs_audit_validate_evidence_grade_activefiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_evidence_grade", "to": "docs_audit_validate_evidence_grade_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_evidence_grade", "to": "docs_audit_validate_evidence_grade_validationoutput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_evidence_grade", "to": "docs_audit_validate_evidence_grade_warnings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_dispsum", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_errors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_invalidnewids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_manifest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_trackedfiles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_uninspected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_verifiedindex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_validate_integrity", "to": "docs_audit_validate_integrity_warnings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package", "to": "frontend_admin_panel_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_scripts", "to": "frontend_admin_panel_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_scripts", "to": "frontend_admin_panel_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_scripts", "to": "frontend_admin_panel_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_scripts", "to": "frontend_admin_panel_package_scripts_preview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_axios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_lucide_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_react_hot_toast", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_react_router_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_recharts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_tanstack_react_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies", "to": "frontend_admin_panel_package_dependencies_zustand", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_tanstack_react_query", "to": "tanstack_react_query", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_axios", "to": "frontend_admin_panel_package_json_axios", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_lucide_react", "to": "frontend_admin_panel_package_json_lucide_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_react", "to": "frontend_admin_panel_package_json_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_react_dom", "to": "frontend_admin_panel_package_json_react_dom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_react_hot_toast", "to": "react_hot_toast", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_react_router_dom", "to": "react_router_dom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_recharts", "to": "recharts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_vite", "to": "vite", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_dependencies_zustand", "to": "frontend_admin_panel_package_json_zustand", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_autoprefixer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_eslint_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_globals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_postcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_tailwindcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_types_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_typescript_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies", "to": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_eslint_js", "to": "frontend_admin_panel_package_json_eslint_js", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "to": "frontend_admin_panel_package_json_tailwindcss_postcss", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_types_node", "to": "frontend_admin_panel_package_json_types_node", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_types_react", "to": "frontend_admin_panel_package_json_types_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_types_react_dom", "to": "frontend_admin_panel_package_json_types_react_dom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", "to": "frontend_admin_panel_package_json_vitejs_plugin_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_autoprefixer", "to": "autoprefixer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_eslint", "to": "frontend_admin_panel_package_json_eslint", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", "to": "eslint_plugin_react_hooks", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", "to": "eslint_plugin_react_refresh", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_globals", "to": "frontend_admin_panel_package_json_globals", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_postcss", "to": "postcss", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_tailwindcss", "to": "frontend_admin_panel_package_json_tailwindcss", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_typescript", "to": "frontend_admin_panel_package_json_typescript", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_package_devdependencies_typescript_eslint", "to": "frontend_admin_panel_package_json_typescript_eslint", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_app", "to": "frontend_admin_panel_src_app_app", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_app", "to": "frontend_admin_panel_src_app_suspensefallback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_app", "to": "frontend_admin_panel_src_routes_adminroutes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_app", "to": "frontend_admin_panel_src_routes_adminroutes_router", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_main", "to": "frontend_admin_panel_src_app", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_main", "to": "frontend_admin_panel_src_app_app", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_layout", "to": "frontend_admin_panel_src_components_layout_layout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_layout", "to": "frontend_admin_panel_src_components_sidebar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_layout", "to": "frontend_admin_panel_src_components_sidebar_sidebar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_layout", "to": "frontend_admin_panel_src_components_topbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_layout", "to": "frontend_admin_panel_src_components_topbar_topbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_components_layout", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_components_layout_layout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_components_protectedroute_protectedroute", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_store_adminauthstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_types_admin_adminuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute", "to": "frontend_admin_panel_src_types_admin_authresponsedata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_components_protectedroute", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_protectedroute_protectedroute", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_components_protectedroute_protectedroute", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_components_routeerrorboundary", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_sidebar", "to": "frontend_admin_panel_src_components_sidebar_menugroup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_sidebar", "to": "frontend_admin_panel_src_components_sidebar_sidebar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_sidebar", "to": "frontend_admin_panel_src_components_sidebar_sidebarprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_sidebar", "to": "frontend_admin_panel_src_components_sidebar_submenuitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_sidebar", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_sidebar", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_components_topbar_livemonitoringsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_components_topbar_searchable_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_components_topbar_topbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_components_topbar_topbarprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_store_adminauthstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_topbar_topbar", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_transactionreceiptmodal", "to": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_transactionreceiptmodal", "to": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_transactionreceiptmodal", "to": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_transactionreceiptmodal", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_transactionreceiptmodal", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_transactionreceiptmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_badge", "to": "frontend_admin_panel_src_components_ui_badge_badge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_badge", "to": "frontend_admin_panel_src_components_ui_badge_badgeprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_badge", "to": "frontend_admin_panel_src_components_ui_badge_badgevariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_badge", "to": "frontend_admin_panel_src_components_ui_badge_variantstyles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_components_ui_badge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_badge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_badge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_components_ui_badge_badge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_badge_badge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_badge_badge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_button", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_button", "to": "frontend_admin_panel_src_components_ui_button_buttonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_button", "to": "frontend_admin_panel_src_components_ui_button_buttonsize", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_button", "to": "frontend_admin_panel_src_components_ui_button_buttonvariant", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_button", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_button", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_components_ui_button", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_components_ui_button_button", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_confirmmodal", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_confirmmodal", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_formfield", "to": "frontend_admin_panel_src_components_ui_formfield_formfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_formfield", "to": "frontend_admin_panel_src_components_ui_formfield_formfieldprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_iconpickermodal", "to": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_iconpickermodal", "to": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_iconpickermodal", "to": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_iconpickermodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_input", "to": "frontend_admin_panel_src_components_ui_input_input", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_input", "to": "frontend_admin_panel_src_components_ui_input_inputprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_input", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_input", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_input", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_input_input", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_input_input", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_input_input", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_maskablefield", "to": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_maskablefield", "to": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_mediaselector_media", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_mediaselector", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "to": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_modal", "to": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_modal", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_modal", "to": "frontend_admin_panel_src_components_ui_modal_modalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_components_ui_modal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_components_ui_modal_modal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_pagination", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_pagination", "to": "frontend_admin_panel_src_components_ui_pagination_paginationprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_pagination", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput", "to": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput", "to": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput", "to": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput", "to": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_priceinput", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_priceinput", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_priceinput", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_components_ui_priceinput", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", "to": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "to": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "to": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_richtexteditor_activestates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_richtexteditor_preset_bg_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_richtexteditor_preset_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_richtexteditor", "to": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditorprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_richtexteditor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_richtexteditor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_richtexteditor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_select", "to": "frontend_admin_panel_src_components_ui_select_select", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_select", "to": "frontend_admin_panel_src_components_ui_select_selectoption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_select", "to": "frontend_admin_panel_src_components_ui_select_selectprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_skeleton", "to": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_components_ui_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_spinner", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_components_ui_spinner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_textarea", "to": "frontend_admin_panel_src_components_ui_textarea_textarea", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_textarea", "to": "frontend_admin_panel_src_components_ui_textarea_textareaprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_thsort", "to": "frontend_admin_panel_src_components_ui_thsort_thsort", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_thsort", "to": "frontend_admin_panel_src_components_ui_thsort_thsortprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_thsort", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_components_ui_thsort_thsort", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_toggleswitch", "to": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_components_ui_toggleswitch", "to": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_toggleswitch", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_pages_apikeyspage_apikeyspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_types_admin_apikeyitem", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_apikeyspage", "to": "frontend_admin_panel_src_types_admin_createapikeypayload", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_apikeyspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_apikeyspage", "to": "frontend_admin_panel_src_pages_apikeyspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_types_admin_b2binquiry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_b2bmanager", "to": "frontend_admin_panel_src_types_admin_partneraccount", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_b2bmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", "to": "frontend_admin_panel_src_pages_b2bmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_bannersmanager", "to": "frontend_admin_panel_src_types_admin_banner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_bannersmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", "to": "frontend_admin_panel_src_pages_bannersmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_pages_blogs_authoruser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_pages_blogs_blogcategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_pages_blogs_blogpost", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_pages_blogs_blogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_pages_blogs_blogtag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_pages_blogs_productsimple", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_blogs", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_blogs", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_blogs", "to": "frontend_admin_panel_src_pages_blogs", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_pages_cms_cms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_pages_cms_herobanner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_pages_cms_vettestimonial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_cms", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_cms", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_cms", "to": "frontend_admin_panel_src_pages_cms", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_pages_categories_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_pages_categories_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_categories", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_categories", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_categories", "to": "frontend_admin_panel_src_pages_categories", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_contactsubmissions", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_contactsubmissions", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", "to": "frontend_admin_panel_src_pages_contactsubmissions", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_pages_coupons_coupon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_pages_coupons_couponformdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_pages_coupons_couponmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_pages_coupons_couponmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_pages_coupons_coupons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_pages_coupons_coupontarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_coupons", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_coupons", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_coupons", "to": "frontend_admin_panel_src_pages_coupons", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_dashboard", "to": "frontend_admin_panel_src_pages_dashboard_categorydist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_dashboard", "to": "frontend_admin_panel_src_pages_dashboard_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_dashboard", "to": "frontend_admin_panel_src_pages_dashboard_dashboarddata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_dashboard", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_dashboard", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_dashboard", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_dashboard", "to": "frontend_admin_panel_src_pages_dashboard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_pages_doctorsmanager_doctor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_doctorsmanager", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_doctorsmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", "to": "frontend_admin_panel_src_pages_doctorsmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_pages_faqmanager_faq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_pages_faqmanager_faqmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_faqmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_faqmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_faqmanager", "to": "frontend_admin_panel_src_pages_faqmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_types_admin_financialsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_types_admin_pricingsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_utils_pricing", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage", "to": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_financialsettingspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", "to": "frontend_admin_panel_src_pages_financialsettingspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", "to": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_ingredientsmanager", "to": "frontend_admin_panel_src_types_admin_ingredient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_ingredientsmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", "to": "frontend_admin_panel_src_pages_ingredientsmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_pages_login_login", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_store_adminauthstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login", "to": "frontend_admin_panel_src_types_admin_authresponsedata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_login", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_login_login", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_login_login", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_pages_media_getfiletype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_pages_media_media", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_pages_media_mediamanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_media", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_media", "to": "frontend_admin_panel_src_pages_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_media_mediamanager", "to": "frontend_admin_panel_src_pages_media_getfiletype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_pages_menumanager_menu_tabs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_pages_menumanager_menuitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_pages_menumanager_menumanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_pages_menumanager_menutype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_menumanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_menumanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_menumanager", "to": "frontend_admin_panel_src_pages_menumanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_pages_monitoringpage_monitoringpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_pages_monitoringpage_monitoringstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_monitoringpage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_monitoringpage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_monitoringpage", "to": "frontend_admin_panel_src_pages_monitoringpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_order_status_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_orderitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_orders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_paymenttx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_pages_orders_topersiandigits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_orders", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_orders", "to": "frontend_admin_panel_src_pages_orders", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders_orders", "to": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_orders_orders", "to": "frontend_admin_panel_src_pages_orders_topersiandigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_pages_paymentgatewayspage_paymentgatewayspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_paymentgatewayspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_paymentgatewayspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage", "to": "frontend_admin_panel_src_pages_paymentgatewayspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_pages_pets_pet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_pages_pets_pets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_pets", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_pets", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_pets", "to": "frontend_admin_panel_src_pages_pets", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_prescriptionsmanager", "to": "frontend_admin_panel_src_types_admin_prescription", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_prescriptionsmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", "to": "frontend_admin_panel_src_pages_prescriptionsmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_pages_products_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_pages_products_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_pages_products_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_types_admin_pricingsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_utils_pricing", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_utils_pricing_applyrounding", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products", "to": "frontend_admin_panel_src_utils_pricing_default_pricing_settings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_products", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_products", "to": "frontend_admin_panel_src_pages_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_products_products", "to": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_bestselleritem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_categorydistitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_colors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_customtooltip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_customtooltipprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_reportdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_reports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_pages_reports_topcouponitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reports", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_reports", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_reports", "to": "frontend_admin_panel_src_pages_reports", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_pages_reviews_blogcommentitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_pages_reviews_productreview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_pages_reviews_reviews", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_pages_reviews_topersiandigits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_reviews", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_reviews", "to": "frontend_admin_panel_src_pages_reviews", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_reviews_reviews", "to": "frontend_admin_panel_src_pages_reviews_topersiandigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_seosettingspage", "to": "frontend_admin_panel_src_types_admin_seosettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_seosettingspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", "to": "frontend_admin_panel_src_pages_seosettingspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_pages_settings_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_settings", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_settings", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_settings", "to": "frontend_admin_panel_src_pages_settings", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_shippingsettingspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_shippingsettingspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", "to": "frontend_admin_panel_src_pages_shippingsettingspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_types_admin_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smartadvisormanager", "to": "frontend_admin_panel_src_types_admin_smartadvisorrule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_smartadvisormanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", "to": "frontend_admin_panel_src_pages_smartadvisormanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_patternitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smseventdefinition", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smseventvariable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smsrule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_smssettingspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", "to": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_sslsettingspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_sslsettingspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", "to": "frontend_admin_panel_src_pages_sslsettingspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_systemsettingspage", "to": "frontend_admin_panel_src_types_admin_systemsettings", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_systemsettingspage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", "to": "frontend_admin_panel_src_pages_systemsettingspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_testimonialsmanager", "to": "frontend_admin_panel_src_types_admin_testimonial", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_testimonialsmanager", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", "to": "frontend_admin_panel_src_pages_testimonialsmanager", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_pages_tickets_ticket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_pages_tickets_ticketmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_pages_tickets_tickets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_tickets", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_tickets", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_tickets", "to": "frontend_admin_panel_src_pages_tickets", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_pages_transactions_gatewayhealth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_pages_transactions_stats", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_pages_transactions_transaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_pages_transactions_transactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_utils_usetableparams", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions", "to": "frontend_admin_panel_src_utils_usetableparams_usetableparams", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_transactions", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_transactions", "to": "frontend_admin_panel_src_pages_transactions", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_transactions_transactions", "to": "frontend_admin_panel_src_utils_usetableparams_usetableparams", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_appsitepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_createseosection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_pagesection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_sectionfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_shared_header_fields", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_site_pages", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_uitexts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_uitexts", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_uitexts", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_uitexts", "to": "frontend_admin_panel_src_pages_uitexts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_pages_users_userrecord", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_pages_users_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_types_admin_petsummary", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users", "to": "frontend_admin_panel_src_types_admin_useraddress", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_users", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_users", "to": "frontend_admin_panel_src_pages_users", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users_userrecord", "to": "frontend_admin_panel_src_types_admin_petsummary", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_users_userrecord", "to": "frontend_admin_panel_src_types_admin_useraddress", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_pages_videos_doctoroption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_pages_videos_video", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_pages_videos_videos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_videos", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_videos", "to": "frontend_admin_panel_src_pages_videos", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wholesaleapplications", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_wholesaleapplications", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", "to": "frontend_admin_panel_src_pages_wholesaleapplications", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_pages_wiki_productitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_pages_wiki_wiki", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_pages_wiki_wikiterm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_wiki", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_wiki", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_wiki", "to": "frontend_admin_panel_src_pages_wiki", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_zibalportalpage", "to": "frontend_admin_panel_src_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_pages_zibalportalpage", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", "to": "frontend_admin_panel_src_pages_zibalportalpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_apikeyspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_blogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_cms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_coupons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_faqmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_media", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_menumanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_monitoringpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_orders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_pets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_reports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_reviews", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_router", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_tickets", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_transactions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_uitexts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_users", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_videos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_wiki", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_utils_lazywithretry", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_routes_adminroutes", "to": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_services_api_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_services_api_apierrorpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_services_api_base_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_services_api_failedqueue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_services_api_processqueue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_store_adminauthstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_services_api", "to": "frontend_admin_panel_src_types_admin_authresponsedata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_store_adminauthstore", "to": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_store_adminauthstore", "to": "frontend_admin_panel_src_types_admin", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_store_adminauthstore", "to": "frontend_admin_panel_src_types_admin_adminuser", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_store_adminauthstore", "to": "frontend_admin_panel_src_types_admin_authstate", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_adminloginpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_adminuser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_apikeyitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_apiresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_authresponsedata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_authstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_b2binquiry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_banner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_createapikeypayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_financialsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_ingredient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_partneraccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_petsummary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_prescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_pricingsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_sendotppayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_seosettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_smartadvisorrule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_systemsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_testimonial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_useraddress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_types_admin", "to": "frontend_admin_panel_src_types_admin_verifyotppayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_lazywithretry", "to": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_pricing", "to": "frontend_admin_panel_src_utils_pricing_applyrounding", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_pricing", "to": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_pricing", "to": "frontend_admin_panel_src_utils_pricing_default_pricing_settings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_pricing", "to": "frontend_admin_panel_src_utils_pricing_pricingsettings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_pricing", "to": "frontend_admin_panel_src_utils_pricing_roundingmode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_pricing_calculatesellingprice", "to": "frontend_admin_panel_src_utils_pricing_applyrounding", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_usetableparams", "to": "frontend_admin_panel_src_utils_usetableparams_usetableparams", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_utils_usetableparams", "to": "frontend_admin_panel_src_utils_usetableparams_usetableparamsoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app", "to": "frontend_admin_panel_tsconfig_app_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app", "to": "frontend_admin_panel_tsconfig_app_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions", "to": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions_lib", "to": "frontend_admin_panel_tsconfig_app_json_ref_dom", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions_lib", "to": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions_lib", "to": "frontend_admin_panel_tsconfig_app_json_ref_es2023", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_compileroptions_types", "to": "ref_vite_client", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_app_include", "to": "frontend_admin_panel_tsconfig_app_json_ref_src", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig", "to": "frontend_admin_panel_tsconfig_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig", "to": "frontend_admin_panel_tsconfig_references", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node", "to": "frontend_admin_panel_tsconfig_node_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node", "to": "frontend_admin_panel_tsconfig_node_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions", "to": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions_lib", "to": "frontend_admin_panel_tsconfig_node_json_ref_es2023", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_compileroptions_types", "to": "frontend_admin_panel_tsconfig_node_json_ref_node", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_tsconfig_node_include", "to": "ref_vite_config_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_authmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_b2bportal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_cartdrawer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_clientlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_loginmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_mobilebottomnav", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_app_clientlayout_prescriptionuploadmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_authmodal", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_b2bportal", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_cartdrawer", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_footer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_footer_footer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_header", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_header_header", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_loginmodal", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_maintenancepage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_maintenancepage_maintenancepage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_mobilebottomnav", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_navigationprogressbar", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_navigationprogressbar_navigationprogressbar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_networkbanner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_networkbanner_networkbanner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_components_prescriptionuploadmodal", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_uistore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_uistore_useuistore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_usepetstore", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout", "to": "frontend_application_lib_types_navigationtarget", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_app_clientlayout", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_cartdrawer", "to": "frontend_application_components_cartdrawer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_loginmodal", "to": "frontend_application_components_loginmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_authmodal", "to": "frontend_application_components_authmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_b2bportal", "to": "frontend_application_components_b2bportal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_mobilebottomnav", "to": "frontend_application_components_mobilebottomnav", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_prescriptionuploadmodal", "to": "frontend_application_components_prescriptionuploadmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_clientlayout", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_clientlayout", "to": "frontend_application_lib_store_uistore_useuistore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_clientlayout", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_clientlayout_clientlayout", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_app_clientlayout_clientlayout", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_app_homeclient_homeclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_app_homeclient_homeclientprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_bannerplacement", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_bannerplacement_bannerplacement", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_blogpreviewsection", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_blogpreviewsection_blogpreviewsection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_faqsection", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_faqsection_faqsection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_featuredproducts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_featuredproducts_featuredproducts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_hero", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_hero_hero", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_smartadvisor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_smartadvisor_smartadvisor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_testimonialssection", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_testimonialssection_testimonialssection", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_vetgallery", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_components_vetgallery_vetgallery", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_types_banner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_types_homeapiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_types_smartadvisorrule", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_types_testimonial", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_app_homeclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient_homeclientprops", "to": "frontend_application_lib_types_homeapiresponse", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient_homeclient", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_homeclient_homeclient", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_app_homeclient_homeclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_about_page", "to": "frontend_application_app_about_page_aboutpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_about_page", "to": "frontend_application_app_about_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_about_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_about_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_about_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route", "to": "frontend_application_app_api_media_path_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route", "to": "frontend_application_app_api_media_path_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route", "to": "frontend_application_app_api_media_path_route_getcandidateurls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route", "to": "frontend_application_app_api_media_path_route_getmimetype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route", "to": "frontend_application_app_api_media_path_route_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route_get", "to": "frontend_application_app_api_media_path_route_getcandidateurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route_head", "to": "frontend_application_app_api_media_path_route_getcandidateurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_media_path_route_get", "to": "frontend_application_app_api_media_path_route_getmimetype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_revalidate_route", "to": "frontend_application_app_api_revalidate_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_revalidate_route", "to": "frontend_application_app_api_revalidate_route_handlerevalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_revalidate_route", "to": "frontend_application_app_api_revalidate_route_post", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_revalidate_route_get", "to": "frontend_application_app_api_revalidate_route_handlerevalidate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_revalidate_route_post", "to": "frontend_application_app_api_revalidate_route_handlerevalidate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_app_api_torob_products_route_buildtorobproductspec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_app_api_torob_products_route_buildtorobproducttitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_app_api_torob_products_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_app_api_torob_products_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_app_api_torob_products_route_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route_get", "to": "frontend_application_app_api_torob_products_route_buildtorobproducttitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route_get", "to": "frontend_application_app_api_torob_products_route_buildtorobproductspec", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_torob_products_route_get", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route", "to": "frontend_application_app_api_uploads_path_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route", "to": "frontend_application_app_api_uploads_path_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route", "to": "frontend_application_app_api_uploads_path_route_getcandidateurls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route", "to": "frontend_application_app_api_uploads_path_route_getmimetype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route", "to": "frontend_application_app_api_uploads_path_route_head", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route_get", "to": "frontend_application_app_api_uploads_path_route_getcandidateurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route_head", "to": "frontend_application_app_api_uploads_path_route_getcandidateurls", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_api_uploads_path_route_get", "to": "frontend_application_app_api_uploads_path_route_getmimetype", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_error", "to": "frontend_application_app_b2b_error_b2berrorboundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_error", "to": "frontend_application_components_errorpages", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_error", "to": "frontend_application_components_errorpages_servererrorpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_app_b2b_page_b2bpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_app_b2b_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_components_b2blandingclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_components_b2blandingclient_b2blandingclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_lib_schema", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_lib_schema_generateb2bserviceschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page_b2bpage", "to": "frontend_application_lib_schema_generateb2bserviceschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_b2b_page_b2bpage", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_app_blog_slug_page_blogpostpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_app_blog_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_app_blog_slug_page_getblog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_app_blog_slug_page_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_app_blog_slug_page_safeiso", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_app_blog_slug_page_safelocaldate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_components_blogpostclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_components_blogpostclient_blogpostclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_lib_seo_formatpagetitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page", "to": "frontend_application_lib_seo_getseoconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_blogpostpage", "to": "frontend_application_app_blog_slug_page_safeiso", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_generatemetadata", "to": "frontend_application_app_blog_slug_page_safeiso", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_blogpostpage", "to": "frontend_application_app_blog_slug_page_safelocaldate", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_blogpostpage", "to": "frontend_application_app_blog_slug_page_getblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_generatemetadata", "to": "frontend_application_app_blog_slug_page_getblog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_generatemetadata", "to": "frontend_application_lib_seo_formatpagetitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_generatemetadata", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_slug_page_blogpostpage", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_error", "to": "frontend_application_app_blog_error_blogerrorboundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_error", "to": "frontend_application_components_errorpages", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_error", "to": "frontend_application_components_errorpages_servererrorpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_loading", "to": "frontend_application_app_blog_loading_blogloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_loading", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_loading", "to": "frontend_application_components_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_app_blog_page_blog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_app_blog_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_app_blog_page_getblogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_app_blog_page_getcategories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_app_blog_page_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_components_blogpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_components_blogpage_blogpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page_blog", "to": "frontend_application_app_blog_page_getcategories", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page_blog", "to": "frontend_application_app_blog_page_getblogs", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_page_getblogs", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_rss_xml_route", "to": "frontend_application_app_blog_rss_xml_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_rss_xml_route", "to": "frontend_application_app_blog_rss_xml_route_escapexml", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_rss_xml_route", "to": "frontend_application_app_blog_rss_xml_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_blog_rss_xml_route_get", "to": "frontend_application_app_blog_rss_xml_route_escapexml", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_app_catalog_catalogclient_catalogclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_components_catalog_flipbookcatalog", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page", "to": "frontend_application_app_catalog_catalogclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page", "to": "frontend_application_app_catalog_catalogclient_catalogclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page", "to": "frontend_application_app_catalog_page_catalogpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page", "to": "frontend_application_app_catalog_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page", "to": "frontend_application_app_checkout_page_checkout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page", "to": "frontend_application_app_checkout_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page", "to": "frontend_application_components_checkoutpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page", "to": "frontend_application_components_checkoutpage_checkoutpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page", "to": "frontend_application_app_checkout_success_id_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page", "to": "frontend_application_app_checkout_success_id_page_successpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page", "to": "frontend_application_components_ordersuccess", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page", "to": "frontend_application_components_ordersuccess_ordersuccess", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_checkout_success_id_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_app_contact_page_contactpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_app_contact_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_components_contactformclient", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_components_contactformclient_contactformclient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_lib_schema", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_lib_schema_generatelocalbusinessschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page_contactpage", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page_contactpage", "to": "frontend_application_lib_schema_generatelocalbusinessschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_orders_page", "to": "frontend_application_app_dashboard_orders_page_dashboardorderspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page", "to": "frontend_application_app_dashboard_page_dashboardpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page", "to": "frontend_application_app_dashboard_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page", "to": "frontend_application_components_userdashboard", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page", "to": "frontend_application_components_userdashboard_userdashboard", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_dashboard_pets_page", "to": "frontend_application_app_dashboard_pets_page_dashboardpetspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_error", "to": "frontend_application_app_error_errorboundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_error", "to": "frontend_application_components_errorpages", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_error", "to": "frontend_application_components_errorpages_servererrorpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_app_layout_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_app_layout_rootlayout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_components_analyticsdeferred", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_components_analyticsdeferred_analyticsdeferred", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_fonts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_fonts_lalezar", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_fonts_vazirmatn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_schema", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_schema_generateorganizationschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout", "to": "frontend_application_lib_seo_getseoconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout_generatemetadata", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout_rootlayout", "to": "frontend_application_lib_schema_generateorganizationschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_layout_rootlayout", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_loading", "to": "frontend_application_app_loading_globalloading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_loading", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_loading", "to": "frontend_application_components_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_not_found", "to": "frontend_application_app_not_found_notfound", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_not_found", "to": "frontend_application_components_errorpages", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_not_found", "to": "frontend_application_components_errorpages_notfoundpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_app_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_app_page_gethomedata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_app_page_home", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page", "to": "frontend_application_lib_types_homeapiresponse", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_page_home", "to": "frontend_application_app_page_gethomedata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_app_payment_verify_page_paymentverifypage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_app_payment_verify_page_verifycontent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page_verifycontent", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page_verifycontent", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page_verifycontent", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_payment_verify_page_verifycontent", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_privacy_page", "to": "frontend_application_app_privacy_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_privacy_page", "to": "frontend_application_app_privacy_page_privacypage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_privacy_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_privacy_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_privacy_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page", "to": "frontend_application_app_profile_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page", "to": "frontend_application_app_profile_page_profilepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page", "to": "frontend_application_components_petprofile", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page", "to": "frontend_application_components_petprofile_petprofile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_profile_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_robots", "to": "frontend_application_app_robots_robots", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page", "to": "frontend_application_app_search_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page", "to": "frontend_application_app_search_page_searchpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page", "to": "frontend_application_components_searchresultspage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page", "to": "frontend_application_components_searchresultspage_searchresultspage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_search_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_app_shop_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_app_shop_slug_page_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_app_shop_slug_page_shopproductpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_components_productpage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_components_productpage_productpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_lib_seo_formatpagetitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_lib_seo_getseoconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page_generatemetadata", "to": "frontend_application_lib_seo_formatpagetitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_slug_page_generatemetadata", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_error", "to": "frontend_application_app_shop_error_shoperrorboundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_error", "to": "frontend_application_components_errorpages", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_error", "to": "frontend_application_components_errorpages_servererrorpage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_app_shop_feed_xml_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_app_shop_feed_xml_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_app_shop_feed_xml_route_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_feed_xml_route_get", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_loading", "to": "frontend_application_app_shop_loading_shoploading", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_loading", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_loading", "to": "frontend_application_components_skeleton_skeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page", "to": "frontend_application_app_shop_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page", "to": "frontend_application_app_shop_page_shop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page", "to": "frontend_application_components_archivepage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page", "to": "frontend_application_components_archivepage_archivepage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_shop_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_categories_xml_route", "to": "frontend_application_app_sitemap_categories_xml_route_default_categories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_categories_xml_route", "to": "frontend_application_app_sitemap_categories_xml_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_categories_xml_route", "to": "frontend_application_app_sitemap_categories_xml_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_categories_xml_route", "to": "frontend_application_app_sitemap_categories_xml_route_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_categories_xml_route", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_categories_xml_route", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_app_sitemap_products_xml_route_dynamic", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_app_sitemap_products_xml_route_get", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_app_sitemap_products_xml_route_revalidate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap_products_xml_route", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap", "to": "frontend_application_app_sitemap_sitemap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_sitemap", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_smart_advisor_page", "to": "frontend_application_app_smart_advisor_page_metadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_smart_advisor_page", "to": "frontend_application_app_smart_advisor_page_smartadvisorpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_smart_advisor_page", "to": "frontend_application_components_smartadvisor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_smart_advisor_page", "to": "frontend_application_components_smartadvisor_smartadvisor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page", "to": "frontend_application_app_track_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page", "to": "frontend_application_app_track_page_trackpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page", "to": "frontend_application_components_ordertracking", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page", "to": "frontend_application_components_ordertracking_ordertracking", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_track_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page", "to": "frontend_application_app_trust_seals_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page", "to": "frontend_application_app_trust_seals_page_trustsealspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page", "to": "frontend_application_components_enamadbadge", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page", "to": "frontend_application_components_enamadbadge_enamadbadge", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_trust_seals_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_app_videos_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_app_videos_page_getinitialvideos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_app_videos_page_videos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_components_videospage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_components_videospage_videospage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_lib_schema", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_lib_schema_generatevideoobjectschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page_videos", "to": "frontend_application_app_videos_page_getinitialvideos", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page_videos", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_videos_page_videos", "to": "frontend_application_lib_schema_generatevideoobjectschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_app_wiki_slug_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_app_wiki_slug_page_getrelatedproducts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_app_wiki_slug_page_getwikiterm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_app_wiki_slug_page_wikitermpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_lib_schema", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_lib_schema_generatemedicalwebpageschema", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_lib_seo_formatpagetitle", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page", "to": "frontend_application_lib_seo_getseoconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_generatemetadata", "to": "frontend_application_app_wiki_slug_page_getwikiterm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_wikitermpage", "to": "frontend_application_app_wiki_slug_page_getwikiterm", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_wikitermpage", "to": "frontend_application_app_wiki_slug_page_getrelatedproducts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_generatemetadata", "to": "frontend_application_lib_seo_formatpagetitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_generatemetadata", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_wikitermpage", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_slug_page_wikitermpage", "to": "frontend_application_lib_schema_generatemedicalwebpageschema", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page", "to": "frontend_application_app_wiki_page_generatemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page", "to": "frontend_application_app_wiki_page_wikipage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page", "to": "frontend_application_components_ingredientwiki", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page", "to": "frontend_application_components_ingredientwiki_ingredientwiki", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page", "to": "frontend_application_lib_seo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page", "to": "frontend_application_lib_seo_getpagemetadata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_wiki_page_generatemetadata", "to": "frontend_application_lib_seo_getpagemetadata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_addressmodal_addressformdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_addressmodal_addressmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_addressmodal_addressmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_addressmodal_normalizedigits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_addressmodal_validateaddressform", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_searchableselect", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_components_searchableselect_searchableselect", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_data_provinces", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_data_provinces_iran_provinces", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_data_provinces_province_cities", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_store_userstore_address", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_addressmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_addressmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_addressmodal_addressformdata", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal_addressmodal", "to": "frontend_application_components_addressmodal_normalizedigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal_validateaddressform", "to": "frontend_application_components_addressmodal_normalizedigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_addressmodal_normalizedigits", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_components_addressmodal_normalizedigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal_addressmodal", "to": "frontend_application_components_addressmodal_validateaddressform", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_addressmodal_validateaddressform", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_components_addressmodal_validateaddressform", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal_addressmodalprops", "to": "frontend_application_lib_store_userstore_address", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_addressmodal_addressmodal", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_addressmodal_addressmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_addressmodal_addressmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_analyticsdeferred", "to": "frontend_application_components_analyticsdeferred_analyticsdeferred", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_analyticsdeferred", "to": "frontend_application_components_analyticsdeferred_analyticsdeferredprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_analyticsdeferred", "to": "frontend_application_components_analyticsdeferred_window", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_analyticsdeferred_analyticsdeferred", "to": "frontend_application_components_analyticsdeferred_analyticsdeferred_gtag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_archivepage_archivepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_archivepage_archiveproductcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_archivepage_archiveproductlistitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_archivepage_category_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_archivepage_icon_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_bannerplacement", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_bannerplacement_bannerplacement", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_skeleton_productcardskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_components_skeleton_productlistskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_data_products_pettype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_petcompatibility", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_types_banner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductcard", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archiveproductlistitem", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archivepage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_archivepage_archivepage", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_components_authmodal_authmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_components_authmodal_authmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_components_authmodal_extractotpfromtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_components_authmodal_otpcooldownexpiries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_components_otpinput5", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_components_otpinput5_otpinput5", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_services_authservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_services_authservice_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_utils_toenglishdigits", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_rationale_97", "to": "frontend_application_components_authmodal", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_authmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_authmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_authmodal", "to": "frontend_application_components_authmodal_extractotpfromtext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_extractotpfromtext", "to": "frontend_application_lib_utils_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_authmodal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_authmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_authmodal", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_authmodal", "to": "frontend_application_lib_utils_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_authmodal_authmodal", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_authmodal_authmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_authmodal_authmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2blandingclient", "to": "frontend_application_components_b2blandingclient_b2blandingclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2blandingclient", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2blandingclient", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2blandingclient", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2blandingclient", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2blandingclient_b2blandingclient", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_components_b2bportal_b2bportal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_services_api", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal_b2bportal", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal_b2bportal", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal_b2bportal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_b2bportal_b2bportal", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_backbutton", "to": "frontend_application_components_backbutton_backbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_backbutton", "to": "frontend_application_components_backbutton_backbuttonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_backbutton", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_backbutton", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_backbutton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_backbutton_backbutton", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_backbutton_backbutton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement", "to": "frontend_application_components_bannerplacement_bannerplacement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement", "to": "frontend_application_components_bannerplacement_bannerplacementprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement", "to": "frontend_application_lib_types_banner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_bannerplacement_bannerplacementprops", "to": "frontend_application_lib_types_banner", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_components_blogpage_blogcategory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_components_blogpage_blogpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_components_blogpage_blogpostitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpage", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpostclient", "to": "frontend_application_components_blogpostclient_blogpostclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpostclient", "to": "frontend_application_components_blogpostclient_blogpostclientprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpostclient", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpostclient", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpostclient", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpostclient", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_components_blogpreviewsection_blogpost", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_components_blogpreviewsection_blogpreviewsection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection_blogpreviewsection", "to": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection_blogpreviewsection", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_blogpreviewsection_blogpreviewsection", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_brandlogo", "to": "frontend_application_components_brandlogo_brandlogo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_brandlogo", "to": "frontend_application_components_brandlogo_brandlogoprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_brandlogo", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_brandlogo", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_components_brandlogo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_brandlogo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_maintenancepage", "to": "frontend_application_components_brandlogo", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_brandlogo_brandlogo", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_components_brandlogo_brandlogo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_brandlogo_brandlogo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_maintenancepage", "to": "frontend_application_components_brandlogo_brandlogo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_cartdrawer_cartdrawer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_deleteconfirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_components_cartdrawer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer_cartdrawer", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer_cartdrawer", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer_cartdrawer", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer_cartdrawer", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_cartdrawer_cartdrawer", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_components_cartdrawer_cartdrawer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_checkoutpage_checkoutpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_searchableselect", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_searchableselect_searchableselect", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_topupmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_components_topupmodal_topupmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_data_provinces", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_data_provinces_iran_provinces", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_data_provinces_province_cities", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_checkoutpage_checkoutpage", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_contactformclient", "to": "frontend_application_components_contactformclient_contactformclient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_contactformclient", "to": "frontend_application_components_contactformclient_contactinfoitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_contactformclient", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_contactformclient", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_contactformclient_contactformclient", "to": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_deleteconfirmmodal", "to": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_deleteconfirmmodal", "to": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_deleteconfirmmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_enamadbadge", "to": "frontend_application_components_enamadbadge_enamadbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_enamadbadge", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_enamadbadge", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_enamadbadge_enamadbadge", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary", "to": "frontend_application_components_errorboundary_errorboundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary", "to": "frontend_application_components_errorboundary_props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary", "to": "frontend_application_components_errorboundary_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary_errorboundary", "to": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary_errorboundary", "to": "frontend_application_components_errorboundary_errorboundary_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary_errorboundary", "to": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary_errorboundary", "to": "frontend_application_components_errorboundary_errorboundary_handleretry", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorboundary_errorboundary", "to": "frontend_application_components_errorboundary_errorboundary_render", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorpages", "to": "frontend_application_components_errorpages_notfoundpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_errorpages", "to": "frontend_application_components_errorpages_servererrorpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection", "to": "frontend_application_components_faqsection_faqitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection", "to": "frontend_application_components_faqsection_faqsection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection_faqsection", "to": "frontend_application_components_faqsection_faqsection_loadfaqs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_faqsection_faqsection", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_components_featuredproducts_featuredproducts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_components_featuredproducts_productcard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_components_skeleton_productcardskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_petcompatibility", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_components_featuredproducts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_productcard", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_featuredproducts_featuredproducts", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_components_featuredproducts_featuredproducts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_components_footer_footer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer", "to": "frontend_application_lib_types_navigationtarget", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_footer_test", "to": "frontend_application_components_footer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_footer_footer", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_footer_test", "to": "frontend_application_components_footer_footer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_header_header", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_header_menu_icons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_prescriptionuploadmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_tickerbanner", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_components_tickerbanner_tickerbanner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_types_navigationtarget", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_components_header", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_components_header_header_handleclickoutside", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_header_header", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_components_header_header", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton", "to": "frontend_application_components_headerbutton_headerbutton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton", "to": "frontend_application_components_headerbutton_headerbuttonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton_headerbutton", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_headerbutton_headerbutton", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_components_hero_hero", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_components_hero_statcounter", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_types_banner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_hero_test", "to": "frontend_application_components_hero", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero_statcounter", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero_hero", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_hero_hero", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_hero_test", "to": "frontend_application_components_hero_hero", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_components_ingredientwiki_formatingredientdisplayname", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_components_ingredientwiki_ingredient_match_keywords", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_components_ingredientwiki_ingredientwiki", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_data_products_ingredientinfo", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_data_products_ingredients_wiki", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki", "to": "frontend_application_lib_types_ingredient", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ingredientwiki_ingredientwiki", "to": "frontend_application_components_ingredientwiki_formatingredientdisplayname", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_components_loginmodal_extractotpfromtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_components_loginmodal_loginmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_components_loginmodal_loginmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_components_loginmodal_loginotpcooldownexpiries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_components_otpinput5", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_components_otpinput5_otpinput5", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_services_authservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_services_authservice_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_utils_toenglishdigits", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal_rationale_46", "to": "frontend_application_components_loginmodal", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal_rationale_99", "to": "frontend_application_components_loginmodal", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal_extractotpfromtext", "to": "frontend_application_lib_utils_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal_loginmodal", "to": "frontend_application_components_loginmodal_extractotpfromtext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal_loginmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_loginmodal_loginmodal", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_maintenancepage", "to": "frontend_application_components_maintenancepage_maintenancepage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_maintenancepage", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_maintenancepage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_maintenancepage_maintenancepage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_components_mobilebottomnav_mobilebottomnav", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_components_mobilebottomnav_solution_items", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_uistore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_uistore_useuistore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav_mobilebottomnav", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav_mobilebottomnav", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav_mobilebottomnav", "to": "frontend_application_lib_store_uistore_useuistore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav_mobilebottomnav", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav_mobilebottomnav", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_mobilebottomnav_mobilebottomnav", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_navigationprogressbar", "to": "frontend_application_components_navigationprogressbar_navigationprogressbar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_navigationprogressbar", "to": "frontend_application_components_navigationprogressbar_progressbarinner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_networkbanner", "to": "frontend_application_components_networkbanner_networkbanner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_networkbanner", "to": "frontend_application_lib_hooks_usenetworkstatus", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_networkbanner", "to": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_networkbanner_networkbanner", "to": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_orderdetailsmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_orderdetailsmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "to": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "to": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess", "to": "frontend_application_components_ordersuccess_ordersuccess", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess_ordersuccess", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordersuccess_ordersuccess", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordertracking", "to": "frontend_application_components_ordertracking_ordertracking", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordertracking", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordertracking", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_ordertracking_ordertracking", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_otpinput5", "to": "frontend_application_components_otpinput5_otpinput5", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_otpinput5", "to": "frontend_application_components_otpinput5_otpinput5props", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_otpinput5", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_otpinput5", "to": "frontend_application_lib_utils_toenglishdigits", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_otpinput5_otpinput5", "to": "frontend_application_lib_utils_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_petprofile_petprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_skeleton_petprofileskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_smartadvisor", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_components_smartadvisor_smartadvisor", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_petcompatibility", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_usepetstore_healthlog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_usepetstore_petprofile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_usepetstore_reminder", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_petprofile", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_petprofile_petprofile", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_petprofile_petprofile", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_components_podcastinlineplayer_playback_rates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_podcastinlineplayer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", "to": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastplayermodal", "to": "frontend_application_components_podcastplayermodal_playback_rates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastplayermodal", "to": "frontend_application_components_podcastplayermodal_podcastplayermodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastplayermodal", "to": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastplayermodal", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastplayermodal", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_podcastplayermodal_podcastplayermodal", "to": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_lib_services_api", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productimagezoommodal", "to": "frontend_application_components_productimagezoommodal_productimagezoommodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productimagezoommodal", "to": "frontend_application_components_productimagezoommodal_productimagezoommodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productimagezoommodal", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productimagezoommodal", "to": "frontend_application_components_productimagezoommodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_calculatorstate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_gallerymediaitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_icon_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_isvideourl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_productimagezoommodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_productpage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_productreviews", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_usecalculatorstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productpage_videomodalplayer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_productreviews", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_tooltip", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_tooltip_tooltip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_components_videomodalplayer", "label": "dynamic_import", "title": "dynamic_import [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_data_scientificterms", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_data_scientificterms_scientific_terms", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_petcompatibility", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_types_dosageconfig", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_components_productpage_usecalculatorstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_videomodalplayer", "to": "frontend_application_components_videomodalplayer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productreviews", "to": "frontend_application_components_productreviews", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_components_productpage_isvideourl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productpage_productpage", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_components_productreviews_productreviews", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_components_productreviews_productreviewsprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_components_productreviews_reviewitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_productreviews_productreviews", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_components_safeimage_safeimage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_components_safeimage_safeimageprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_safeimage", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage_safeimage", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage_safeimage", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_safeimage_safeimage", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_safeimage_safeimage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_components_searchresultspage_searchresultspage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchresultspage_searchresultspage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchableselect", "to": "frontend_application_components_searchableselect_searchableselect", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchableselect", "to": "frontend_application_components_searchableselect_searchableselectprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchableselect", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchableselect", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_searchableselect_searchableselect", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_skeleton", "to": "frontend_application_components_skeleton_orderrowskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_skeleton", "to": "frontend_application_components_skeleton_petprofileskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_skeleton", "to": "frontend_application_components_skeleton_productcardskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_skeleton", "to": "frontend_application_components_skeleton_productlistskeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_skeleton", "to": "frontend_application_components_skeleton_skeleton", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_skeleton", "to": "frontend_application_components_skeleton_skeletonprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_skeleton", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_skeleton_orderrowskeleton", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_components_smartadvisor_current_symptoms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_components_smartadvisor_medical_histories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_components_smartadvisor_smartadvisor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_components_smartadvisor_smartadvisorprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_data_products_products", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_uistore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_uistore_useuistore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor_smartadvisor", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor_smartadvisor", "to": "frontend_application_lib_store_uistore_useuistore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor_smartadvisor", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor_smartadvisor", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_smartadvisor_smartadvisor", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_components_testimonialssection_testimonial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_components_testimonialssection_testimonialssection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_lib_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection_testimonialssection", "to": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_testimonialssection_testimonialssection", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tickerbanner", "to": "frontend_application_components_tickerbanner_tickerbanner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tickerbanner", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tickerbanner", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tickerbanner_tickerbanner", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_tooltip_test", "to": "frontend_application_components_tooltip", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip", "to": "frontend_application_components_tooltip_tooltip", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip", "to": "frontend_application_components_tooltip_tooltipprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip", "to": "frontend_application_lib_data_scientificterms", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip", "to": "frontend_application_lib_data_scientificterms_scientific_terms", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_tooltip_test", "to": "frontend_application_components_tooltip_tooltip", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tooltip_tooltip", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_components_topupmodal_preset_amounts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_components_topupmodal_topupmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_components_topupmodal_topupmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_topupmodal", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal_topupmodal", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_topupmodal_topupmodal", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_topupmodal_topupmodal", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_components_userdashboard_userdashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_api_base_domain", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_ticketservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_ticketservice_ticket", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_ticketservice_ticketmessage", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_services_ticketservice_ticketservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_userstore_address", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_utils", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_utils_cn", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_utils_toenglishdigits", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard", "to": "frontend_application_lib_utils_topersian", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_utils_cn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_utils_toenglishdigits", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_userdashboard_userdashboard", "to": "frontend_application_lib_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_vetgallery_displayvideoitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_vetgallery_fallback_videos", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_vetgallery_testimonialitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_vetgallery_vetgallery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_videomodalplayer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_components_videomodalplayer_videomodalplayer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_lib_services_videoservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_lib_services_videoservice_video", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_lib_services_videoservice_videoservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_vetgallery_vetgallery", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videomodalplayer", "to": "frontend_application_components_videomodalplayer_playback_rates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videomodalplayer", "to": "frontend_application_components_videomodalplayer_videomodalplayer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videomodalplayer", "to": "frontend_application_components_videomodalplayer_videomodalplayerprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videomodalplayer", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videomodalplayer", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_videomodalplayer", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videomodalplayer_videomodalplayer", "to": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_application_components_videomodalplayer_videomodalplayer", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_videomodalplayer_videomodalplayer", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_components_videospage_videospage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_lib_services_videoservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_lib_services_videoservice_video", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_videospage", "to": "frontend_application_lib_services_videoservice_videoservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_components_tests_cartdrawer_test_mockproduct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_lib_usecatalogmode", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_cartdrawer_test", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_components_tests_featuredproducts_test_mockproducts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_components_tests_featuredproducts_test_mockpush", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_lib_services_productservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_lib_services_productservice_productservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_featuredproducts_test", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_lib_store_usepetstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_header_test", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_hero_test", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_hero_test", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_tooltip_test", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_tests_tooltip_test", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_categorymeta", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_getformbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_components_catalog_catalogpagespread", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_components_catalog_catalogpagespread_categorymeta", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_getformbadge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "to": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", "to": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal", "to": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal", "to": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_eslint_config", "to": "frontend_application_eslint_config_eslintconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_dosageresult", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_faq", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_ingredientinfo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_ingredients_wiki", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_pettype", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_product", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_products", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_products", "to": "frontend_application_lib_data_products_specialist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_data_products", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_data_products_pettype", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproducts", "to": "frontend_application_lib_data_products_pettype", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproductbyid", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproducts", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_data_products_product", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore_cartitem", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore_cartstore", "to": "frontend_application_lib_data_products_product", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_provinces", "to": "frontend_application_lib_data_provinces_iran_provinces", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_provinces", "to": "frontend_application_lib_data_provinces_province_cities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_scientificterms", "to": "frontend_application_lib_data_scientificterms_scientific_terms", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_data_scientificterms", "to": "frontend_application_lib_data_scientificterms_scientificterm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_fonts", "to": "frontend_application_lib_fonts_lalezar", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_fonts", "to": "frontend_application_lib_fonts_vazirmatn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_hooks_usenetworkstatus", "to": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_media", "to": "frontend_application_lib_media_getmediaurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_media", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getbanners", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_media_getmediaurl", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice_normalizevideo", "to": "frontend_application_lib_media_getmediaurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility", "to": "frontend_application_lib_petcompatibility_isspeciescompatible", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility", "to": "frontend_application_lib_petcompatibility_matchesmedicalsymptom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility_isspeciescompatible", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility_issuitableforboth", "to": "frontend_application_lib_petcompatibility_issuitablefordog", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility_isspeciescompatible", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility_issuitableforboth", "to": "frontend_application_lib_petcompatibility_issuitableforcat", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_petcompatibility_isspeciescompatible", "to": "frontend_application_lib_petcompatibility_issuitableforboth", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_b2bserviceschemaoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_breadcrumbitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_generateb2bserviceschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_generatebreadcrumbschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_generatelocalbusinessschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_generatemedicalwebpageschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_generateorganizationschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_generatevideoobjectschema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_medicalwebpageschemaoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_organizationschemaoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_schema", "to": "frontend_application_lib_schema_videoobjectschemaoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_cleanpagetitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_default_seo_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_formatpagetitle", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_getpagemetadata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_getseoconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_pagemetadataoptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo", "to": "frontend_application_lib_seo_seoconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo_getpagemetadata", "to": "frontend_application_lib_seo_getseoconfig", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo_formatpagetitle", "to": "frontend_application_lib_seo_cleanpagetitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_seo_getpagemetadata", "to": "frontend_application_lib_seo_formatpagetitle", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_services_api_api", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_services_api_apierrorpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_services_api_base_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_services_api_baseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_services_api_getbaseurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_api", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_ticketservice", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_settingsstore", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_settingsstore_test", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_userstore_test", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_services_api", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_ticketservice", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_settingsstore", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_settingsstore_test", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_userstore_test", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_services_api_api", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice", "to": "frontend_application_lib_services_authservice_apierr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice", "to": "frontend_application_lib_services_authservice_authresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice", "to": "frontend_application_lib_services_authservice_authservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice", "to": "frontend_application_lib_services_authservice_user", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_userstore_test", "to": "frontend_application_lib_services_authservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_services_authservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_services_authservice_user", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_getinstance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_getprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_login", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_logout", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_register", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_sendotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_updateprofile", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_authservice_authservice", "to": "frontend_application_lib_services_authservice_authservice_verifyotp", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_userstore_test", "to": "frontend_application_lib_services_authservice_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_services_authservice_authservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice", "to": "frontend_application_lib_services_orderservice_apierr", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice", "to": "frontend_application_lib_services_orderservice_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice", "to": "frontend_application_lib_services_orderservice_orderitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice", "to": "frontend_application_lib_services_orderservice_orderservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_services_orderservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_services_orderservice", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice_orderservice", "to": "frontend_application_lib_services_orderservice_orderservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice_orderservice", "to": "frontend_application_lib_services_orderservice_orderservice_createorder", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice_orderservice", "to": "frontend_application_lib_services_orderservice_orderservice_getinstance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice_orderservice", "to": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_orderservice_orderservice", "to": "frontend_application_lib_services_orderservice_orderservice_getuserorders", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_services_orderservice_orderservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_services_orderservice_orderservice", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_services_productservice_backendproduct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_services_productservice_category_slug_to_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_services_productservice_productservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_types", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice", "to": "frontend_application_lib_types_banner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_constructor", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getactivefilters", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getbanners", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getinstance", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getproductbyid", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_getproducts", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice", "to": "frontend_application_lib_services_productservice_productservice_serverfetch", "label": "method", "title": "method [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "to": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproductbyid", "to": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "to": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproducts", "to": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "to": "frontend_application_lib_services_productservice_productservice_serverfetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproductbyid", "to": "frontend_application_lib_services_productservice_productservice_serverfetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "to": "frontend_application_lib_services_productservice_productservice_serverfetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getproducts", "to": "frontend_application_lib_services_productservice_productservice_serverfetch", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_productservice_productservice_getbanners", "to": "frontend_application_lib_types_banner", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_ticketservice", "to": "frontend_application_lib_services_ticketservice_createticketpayload", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_ticketservice", "to": "frontend_application_lib_services_ticketservice_ticket", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_ticketservice", "to": "frontend_application_lib_services_ticketservice_ticketmessage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_ticketservice", "to": "frontend_application_lib_services_ticketservice_ticketservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_services_videoservice_normalizevideo", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_services_videoservice_video", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_services_videoservice", "to": "frontend_application_lib_services_videoservice_videoservice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_cartstore_test", "to": "frontend_application_lib_store_tests_cartstore_test_mockproduct", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_settingsstore_test", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_settingsstore_test", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_userstore_test", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_tests_userstore_test", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_store_cartstore_cartitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_store_cartstore_cartstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_store_cartstore_order", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_cartstore", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_cartstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_cartstore_usecartstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_settingsstore", "to": "frontend_application_lib_store_settingsstore_scientificterm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_settingsstore", "to": "frontend_application_lib_store_settingsstore_settingsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_settingsstore", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_usecatalogmode", "to": "frontend_application_lib_store_settingsstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_usecatalogmode", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_usecatalogmode_usecatalogmode", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_uistore", "to": "frontend_application_lib_store_uistore_uistate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_uistore", "to": "frontend_application_lib_store_uistore_useuistore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_usepetstore_healthlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_usepetstore_petconsumption", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_usepetstore_petprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_usepetstore_petstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_usepetstore_reminder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_userstore", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_usepetstore", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_usepetstore_usepetstore", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_userstore_address", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_userstore_transaction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_userstore_userprofile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_userstore_userrole", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_userstore_userstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_store_userstore", "to": "frontend_application_lib_store_userstore_useuserstore", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_b2binquiry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_banner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_dosageconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_homeapiresponse", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_ingredient", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_navigationhandler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_navigationtarget", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_partneraccount", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_prescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_smartadvisorrule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_types", "to": "frontend_application_lib_types_testimonial", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_usecatalogmode", "to": "frontend_application_lib_usecatalogmode_usecatalogmode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_utils", "to": "frontend_application_lib_utils_cn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_utils", "to": "frontend_application_lib_utils_toenglishdigits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_lib_utils", "to": "frontend_application_lib_utils_topersian", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_next_config", "to": "frontend_application_next_config_nextconfig", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_next_config", "to": "frontend_application_next_config_securityheaders", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package", "to": "frontend_application_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package", "to": "frontend_application_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package", "to": "frontend_application_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package", "to": "frontend_application_package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package", "to": "frontend_application_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package", "to": "frontend_application_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_scripts", "to": "frontend_application_package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_scripts", "to": "frontend_application_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_scripts", "to": "frontend_application_package_scripts_lint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_scripts", "to": "frontend_application_package_scripts_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_axios", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_lucide_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_motion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_next", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_nextjs_toploader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_sonner", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies", "to": "frontend_application_package_dependencies_zustand", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_axios", "to": "frontend_application_package_json_axios", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_lucide_react", "to": "frontend_application_package_json_lucide_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_motion", "to": "motion", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_next", "to": "next", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_nextjs_toploader", "to": "nextjs_toploader", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_react", "to": "frontend_application_package_json_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_react_dom", "to": "frontend_application_package_json_react_dom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_sonner", "to": "sonner", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_dependencies_zustand", "to": "frontend_application_package_json_zustand", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_eslint_config_next", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_jsdom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_tailwindcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_tailwindcss_postcss", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_testing_library_jest_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_testing_library_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_types_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_types_react_dom", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_vitejs_plugin_react", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies", "to": "frontend_application_package_devdependencies_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_tailwindcss_postcss", "to": "frontend_application_package_json_tailwindcss_postcss", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_testing_library_jest_dom", "to": "testing_library_jest_dom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_testing_library_react", "to": "testing_library_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_types_node", "to": "frontend_application_package_json_types_node", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_types_react", "to": "frontend_application_package_json_types_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_types_react_dom", "to": "frontend_application_package_json_types_react_dom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_vitejs_plugin_react", "to": "frontend_application_package_json_vitejs_plugin_react", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_eslint", "to": "frontend_application_package_json_eslint", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_eslint_config_next", "to": "eslint_config_next", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_jsdom", "to": "jsdom", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_tailwindcss", "to": "frontend_application_package_json_tailwindcss", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_typescript", "to": "frontend_application_package_json_typescript", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_package_devdependencies_vitest", "to": "vitest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_postcss_config", "to": "frontend_application_postcss_config_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig", "to": "frontend_application_tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig", "to": "frontend_application_tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig", "to": "frontend_application_tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_allowjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_incremental", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_isolatedmodules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_jsx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_plugins", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions", "to": "frontend_application_tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions_lib", "to": "frontend_application_tsconfig_json_ref_dom", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions_lib", "to": "frontend_application_tsconfig_json_ref_dom_iterable", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_compileroptions_lib", "to": "frontend_application_tsconfig_json_ref_esnext", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_include", "to": "frontend_application_tsconfig_json_ref_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_include", "to": "ref_mts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_include", "to": "ref_next_dev_types_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_include", "to": "ref_next_env_d_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_include", "to": "ref_next_types_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_include", "to": "ref_tsx", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_exclude", "to": "frontend_application_tsconfig_json_ref_node_modules", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_exclude", "to": "frontend_application_tsconfig_json_ref_prisma", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_exclude", "to": "ref_tests", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_exclude", "to": "ref_vitest_config_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_exclude", "to": "ref_vitest_setup_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_vitest_setup", "to": "frontend_application_vitest_setup_localstoragemock", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_vitest_setup", "to": "frontend_application_vitest_setup_mockintersectionobserver", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_private", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_admin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev_admin", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_install_all", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_start", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_e2e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_e2e_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_e2e_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_concurrently", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_dotenv", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_playwright_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies_playwright_test", "to": "playwright_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies_types_node", "to": "package_json_types_node", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies_concurrently", "to": "concurrently", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies_dotenv", "to": "dotenv", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies_typescript", "to": "package_json_typescript", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "playwright_config", "to": "ref_playwright_test", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_backup_db", "to": "scripts_backup_db_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_deploy", "to": "scripts_deploy_compose_docker_cli_build", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_deploy", "to": "scripts_deploy_docker_buildkit", "label": "defines", "title": "defines [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_deploy", "to": "scripts_deploy_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_open_browsers", "to": "scripts_open_browsers_checkandopen", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_open_browsers", "to": "scripts_open_browsers_exec", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_open_browsers", "to": "scripts_open_browsers_http", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_open_browsers", "to": "scripts_open_browsers_openurl", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_open_browsers", "to": "scripts_open_browsers_urls", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_open_browsers_checkandopen", "to": "scripts_open_browsers_openurl", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_distmainpath", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_fs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_http", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_spawn_execsync", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_waitforbackend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev_waitforbackend", "to": "scripts_start_dev_waitforbackend_check", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "start", "to": "start_sh__entry", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_b2b_submissions_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_b2b_submissions_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_blogs_crud_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_blogs_crud_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_crud_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_crud_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_orders_flow_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_orders_flow_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_rbac_roles_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_admin_admin_rbac_roles_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_security_xss_ratelimit_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_security_xss_ratelimit_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_auth_otp_recovery_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_auth_otp_recovery_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_b2b_flow_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_b2b_flow_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_blog_wiki_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_blog_wiki_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_cart_operations_spec", "to": "tests_e2e_storefront_cart_operations_spec_parsepersianprice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_cart_operations_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_cart_operations_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_checkout_flow_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_checkout_flow_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_concurrency_stock_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_concurrency_stock_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_contact_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_contact_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_error_pages_404_500_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_error_pages_404_500_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_order_tracking_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_order_tracking_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_shop_filter_search_spec", "to": "tests_fixtures_index", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_e2e_storefront_shop_filter_search_spec", "to": "tests_fixtures_index_test", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_fixtures_admin_auth_setup", "to": "ref_playwright_test", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_fixtures_admin_auth_setup", "to": "tests_fixtures_admin_auth_setup_authfile", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_fixtures_index", "to": "ref_playwright_test", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tests_fixtures_index", "to": "tests_fixtures_index_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_esmoduleinterop", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_lib", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_noemit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions_lib", "to": "tsconfig_json_ref_dom", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions_lib", "to": "tsconfig_json_ref_dom_iterable", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions_lib", "to": "tsconfig_json_ref_esnext", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions_types", "to": "ref_playwright_test", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions_types", "to": "tsconfig_json_ref_node", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_include", "to": "ref_playwright_config_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_include", "to": "ref_tests_ts", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_exclude", "to": "ref_backend", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_exclude", "to": "ref_frontend", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_exclude", "to": "tsconfig_json_ref_node_modules", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_rules_graphify", "to": "agents_rules_graphify_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_workflows_graphify", "to": "agents_workflows_graphify_workflow_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency", "to": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_activation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_agent_directory_reference", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_pipeline_a_new_project_greenfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_real_data_policy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_state_json_template_full_schema_v3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_state_machine_active_agent_tracking", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_step_1_detect_project_intent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_task_execution_loop_all_pipelines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", "to": "ai_agency_agency_your_identity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", "to": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", "to": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", "to": "ai_agency_agency_phase_3_execution_same_as_always", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake", "to": "ai_agency_agents_00_intake_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_role_core_objective", "to": "ai_agency_agents_00_intake_brownfield_detection", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_role_core_objective", "to": "ai_agency_agents_00_intake_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_role_core_objective", "to": "ai_agency_agents_00_intake_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_role_core_objective", "to": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_role_core_objective", "to": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_operational_rules_boundaries", "to": "ai_agency_agents_00_intake_1_ask_don_t_assume", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_00_intake_operational_rules_boundaries", "to": "ai_agency_agents_00_intake_2_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor", "to": "ai_agency_agents_01_auditor_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_role_core_objective", "to": "ai_agency_agents_01_auditor_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_role_core_objective", "to": "ai_agency_agents_01_auditor_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_role_core_objective", "to": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_role_core_objective", "to": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_operational_rules_boundaries", "to": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_operational_rules_boundaries", "to": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_operational_rules_boundaries", "to": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_operational_rules_boundaries", "to": "ai_agency_agents_01_auditor_4_deep_directory_scanning", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_01_auditor_operational_rules_boundaries", "to": "ai_agency_agents_01_auditor_5_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo", "to": "ai_agency_agents_02_ceo_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_role_core_objective", "to": "ai_agency_agents_02_ceo_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_role_core_objective", "to": "ai_agency_agents_02_ceo_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_role_core_objective", "to": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_role_core_objective", "to": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_operational_rules_boundaries", "to": "ai_agency_agents_02_ceo_1_mode_direction_decision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_operational_rules_boundaries", "to": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_operational_rules_boundaries", "to": "ai_agency_agents_02_ceo_3_risk_assessment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_02_ceo_operational_rules_boundaries", "to": "ai_agency_agents_02_ceo_4_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager", "to": "ai_agency_agents_03_product_manager_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_role_core_objective", "to": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_role_core_objective", "to": "ai_agency_agents_03_product_manager_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_role_core_objective", "to": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_role_core_objective", "to": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_role_core_objective", "to": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", "to": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", "to": "ai_agency_agents_03_product_manager_synthesis_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", "to": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", "to": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_4_role_assignment_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_6_priority_assignment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_03_product_manager_operational_rules_boundaries", "to": "ai_agency_agents_03_product_manager_7_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect", "to": "ai_agency_agents_04_architect_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_role_core_objective", "to": "ai_agency_agents_04_architect_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_role_core_objective", "to": "ai_agency_agents_04_architect_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_role_core_objective", "to": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_role_core_objective", "to": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_1_stack_detection_brownfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_2_stack_selection_greenfield", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_5_directory_layout", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_6_openapi_api_contract", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_04_architect_operational_rules_boundaries", "to": "ai_agency_agents_04_architect_7_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend", "to": "ai_agency_agents_05_dev_backend_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_role_core_objective", "to": "ai_agency_agents_05_dev_backend_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_role_core_objective", "to": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_role_core_objective", "to": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_role_core_objective", "to": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_role_core_objective", "to": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_role_core_objective", "to": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", "to": "ai_agency_agents_05_dev_backend_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", "to": "ai_agency_agents_05_dev_backend_what_you_do_not_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", "to": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", "to": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "to": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "to": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "to": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "to": "ai_agency_agents_05_dev_backend_4_code_quality_standards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "to": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", "to": "ai_agency_agents_05_dev_backend_6_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend", "to": "ai_agency_agents_06_dev_frontend_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_role_core_objective", "to": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_role_core_objective", "to": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_role_core_objective", "to": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_role_core_objective", "to": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_role_core_objective", "to": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_role_core_objective", "to": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", "to": "ai_agency_agents_06_dev_frontend_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", "to": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", "to": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", "to": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", "to": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer", "to": "ai_agency_agents_07_qa_engineer_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_role_core_objective", "to": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_role_core_objective", "to": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_role_core_objective", "to": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_role_core_objective", "to": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "to": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "to": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "to": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "to": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "to": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "to": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa", "to": "ai_agency_agents_08_visual_qa_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_role_core_objective", "to": "ai_agency_agents_08_visual_qa_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_role_core_objective", "to": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_role_core_objective", "to": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_role_core_objective", "to": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_role_core_objective", "to": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_role_core_objective", "to": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", "to": "ai_agency_agents_08_visual_qa_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", "to": "ai_agency_agents_08_visual_qa_what_you_do_not_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", "to": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", "to": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", "to": "ai_agency_agents_08_visual_qa_7_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security", "to": "ai_agency_agents_09_devops_security_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_role_core_objective", "to": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_role_core_objective", "to": "ai_agency_agents_09_devops_security_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_role_core_objective", "to": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_role_core_objective", "to": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_role_core_objective", "to": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_role_core_objective", "to": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", "to": "ai_agency_agents_09_devops_security_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", "to": "ai_agency_agents_09_devops_security_what_you_do_not_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", "to": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", "to": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "to": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "to": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "to": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "to": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_09_devops_security_operational_rules_boundaries", "to": "ai_agency_agents_09_devops_security_5_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer", "to": "ai_agency_agents_10_tech_writer_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_role_core_objective", "to": "ai_agency_agents_10_tech_writer_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_role_core_objective", "to": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_role_core_objective", "to": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_role_core_objective", "to": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "to": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "to": "ai_agency_agents_10_tech_writer_2_documentation_updates", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "to": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "to": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", "to": "ai_agency_agents_10_tech_writer_5_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy", "to": "ai_agency_agents_11_deploy_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_role_core_objective", "to": "ai_agency_agents_11_deploy_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_role_core_objective", "to": "ai_agency_agents_11_deploy_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_role_core_objective", "to": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_role_core_objective", "to": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_operational_rules_boundaries", "to": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_operational_rules_boundaries", "to": "ai_agency_agents_11_deploy_2_build_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_operational_rules_boundaries", "to": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_operational_rules_boundaries", "to": "ai_agency_agents_11_deploy_4_post_deployment_health_check", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_11_deploy_operational_rules_boundaries", "to": "ai_agency_agents_11_deploy_5_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content", "to": "ai_agency_agents_12_seo_content_role_core_objective", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_create_mode_normal_operation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_expected_json_output_schema", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_operating_modes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_operational_rules_boundaries", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_required_output_artifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_role_core_objective", "to": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", "to": "ai_agency_agents_12_seo_content_output", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", "to": "ai_agency_agents_12_seo_content_what_you_do_not_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", "to": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", "to": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_operating_modes", "to": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_operating_modes", "to": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "to": "ai_agency_agents_12_seo_content_step_1_gather_resources", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "to": "ai_agency_agents_12_seo_content_step_2_seo_strategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "to": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "to": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "to": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", "to": "ai_agency_agents_12_seo_content_step_6_image_alt_text", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_operational_rules_boundaries", "to": "ai_agency_agents_12_seo_content_file_scope_boundary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_agents_12_seo_content_operational_rules_boundaries", "to": "ai_agency_agents_12_seo_content_forbidden_actions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_memory_scratchpad", "to": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "to": "ai_agency_memory_scratchpad_execution_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "to": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "to": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_api_contract", "to": "ai_agency_specs_api_contract_api_contract_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_api_contract_api_contract_specification", "to": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_api_contract_api_contract_specification", "to": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_architecture_spec", "to": "ai_agency_specs_architecture_spec_architecture_specification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_architecture_spec_architecture_specification", "to": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_architecture_spec_architecture_specification", "to": "ai_agency_specs_architecture_spec_2_directory_structure_tree", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_architecture_spec_architecture_specification", "to": "ai_agency_specs_architecture_spec_3_state_management_strategy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_architecture_spec_architecture_specification", "to": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_prd", "to": "ai_agency_specs_prd_product_requirement_document_prd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_prd_product_requirement_document_prd", "to": "ai_agency_specs_prd_1_executive_vision", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_prd_product_requirement_document_prd", "to": "ai_agency_specs_prd_2_target_audience", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_prd_product_requirement_document_prd", "to": "ai_agency_specs_prd_3_functional_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_prd_product_requirement_document_prd", "to": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_prd_product_requirement_document_prd", "to": "ai_agency_specs_prd_5_epic_feature_breakdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_project_health", "to": "ai_agency_specs_project_health_project_health_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_project_health_project_health_audit_report", "to": "ai_agency_specs_project_health_1_audit_score_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_project_health_project_health_audit_report", "to": "ai_agency_specs_project_health_2_technical_debt_inventory", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_project_health_project_health_audit_report", "to": "ai_agency_specs_project_health_3_outdated_dependencies_list", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_project_health_project_health_audit_report", "to": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_backend_review", "to": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", "to": "ai_agency_specs_reviews_backend_review_architectural_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", "to": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_code_health_review", "to": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "to": "ai_agency_specs_reviews_code_health_review_executive_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "to": "ai_agency_specs_reviews_code_health_review_key_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "to": "ai_agency_specs_reviews_code_health_review_recommendations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_frontend_review", "to": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", "to": "ai_agency_specs_reviews_frontend_review_architectural_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", "to": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_security_review", "to": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", "to": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_seo_content_review", "to": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", "to": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", "to": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_ux_review", "to": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", "to": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_instructions", "to": "antigravity_instructions_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify", "to": "antigravity_workflows_graphify_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_for_graphify_add_and_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_for_graphify_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_for_update_and_cluster_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_honesty_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_troubleshooting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_usage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_what_graphify_is_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_graphify", "to": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_2_detect_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_5_label_communities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_what_you_must_do_when_invoked", "to": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", "to": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", "to": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", "to": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "antigravity_workflows_graphify_troubleshooting", "to": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_claude", "to": "claude_claude_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill", "to": "claude_skills_graphify_skill_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_for_graphify_add_and_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_for_graphify_query", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_for_update_and_cluster_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_honesty_rules", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_troubleshooting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_usage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_what_graphify_is_for", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_graphify", "to": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_2_detect_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_5_label_communities", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_what_you_must_do_when_invoked", "to": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", "to": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", "to": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", "to": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_skill_troubleshooting", "to": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_add_watch", "to": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", "to": "claude_skills_graphify_references_add_watch_for_graphify_add", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", "to": "claude_skills_graphify_references_add_watch_for_watch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports", "to": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", "to": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_extraction_spec", "to": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_github_and_merge", "to": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", "to": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_hooks", "to": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", "to": "claude_skills_graphify_references_hooks_for_git_commit_hook", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", "to": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_query", "to": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "to": "claude_skills_graphify_references_query_for_graphify_explain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "to": "claude_skills_graphify_references_query_for_graphify_path", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "to": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "to": "claude_skills_graphify_references_query_step_1_traversal", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_transcribe", "to": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", "to": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_update", "to": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", "to": "claude_skills_graphify_references_update_for_cluster_only", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", "to": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents", "to": "agents_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "claude", "to": "claude_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_compile_and_run_the_project", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_deployment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_description", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_project_setup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_resources", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_run_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_stay_in_touch", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_readme", "to": "backend_readme_support", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment", "to": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_readme", "to": "docs_04_setup_and_deployment", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", "to": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", "to": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", "to": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", "to": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", "to": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", "to": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", "to": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", "to": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", "to": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", "to": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", "to": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", "to": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_05_devops_and_monitoring", "to": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_readme", "to": "docs_05_devops_and_monitoring", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", "to": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", "to": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", "to": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", "to": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_06_testing", "to": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_readme", "to": "docs_06_testing", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "to": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "to": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "to": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "to": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", "to": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_readme", "to": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map", "to": "docs_audit_00_repository_map_repository_map", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_repository_map", "to": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_repository_map", "to": "docs_audit_00_repository_map_documentation_governance", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_repository_map", "to": "docs_audit_00_repository_map_important_configuration_infrastructure_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_repository_map", "to": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_repository_map", "to": "docs_audit_00_repository_map_repository_structure_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", "to": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", "to": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", "to": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery", "to": "docs_audit_01_system_discovery_system_discovery", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery_system_discovery", "to": "docs_audit_01_system_discovery_current_architecture", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery_system_discovery", "to": "docs_audit_01_system_discovery_evidence_based_status_matrix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery_system_discovery", "to": "docs_audit_01_system_discovery_major_business_domains_discovered", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery_system_discovery", "to": "docs_audit_01_system_discovery_technical_architecture_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery_current_architecture", "to": "docs_audit_01_system_discovery_active_core_applications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_01_system_discovery_current_architecture", "to": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan", "to": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "to": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "to": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "to": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "to": "docs_audit_02_audit_plan_subagent_execution_mode", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_10_documentation_engineer", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_4_admin_features_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_6_security_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_8_testing_reliability_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "to": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_03_baseline_command_plan", "to": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", "to": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", "to": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", "to": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", "to": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", "to": "docs_audit_03_baseline_command_plan_root_package_json_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_04_open_questions", "to": "docs_audit_04_open_questions_open_questions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_04_open_questions_open_questions", "to": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_04_open_questions_open_questions", "to": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_04_open_questions_open_questions", "to": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_04_open_questions_open_questions", "to": "docs_audit_04_open_questions_4_sms_otp_service_provider", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit", "to": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "to": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "to": "docs_audit_06_storefront_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "to": "docs_audit_06_storefront_audit_fe_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "to": "docs_audit_06_storefront_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "to": "docs_audit_06_storefront_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_06_storefront_audit_fe_001", "to": "docs_audit_06_storefront_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit", "to": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "to": "docs_audit_07_backend_audit_be_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "to": "docs_audit_07_backend_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "to": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "to": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "to": "docs_audit_07_backend_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "to": "docs_audit_07_backend_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_07_backend_audit_be_001", "to": "docs_audit_07_backend_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit", "to": "docs_audit_08_admin_features_audit_admin_features_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_admin_features_audit_report", "to": "docs_audit_08_admin_features_audit_adm_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_admin_features_audit_report", "to": "docs_audit_08_admin_features_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_admin_features_audit_report", "to": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_admin_features_audit_report", "to": "docs_audit_08_admin_features_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_admin_features_audit_report", "to": "docs_audit_08_admin_features_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_08_admin_features_audit_adm_001", "to": "docs_audit_08_admin_features_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit", "to": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "to": "docs_audit_09_database_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "to": "docs_audit_09_database_audit_db_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "to": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "to": "docs_audit_09_database_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "to": "docs_audit_09_database_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_09_database_audit_db_001", "to": "docs_audit_09_database_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit", "to": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "to": "docs_audit_11_code_quality_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "to": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "to": "docs_audit_11_code_quality_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "to": "docs_audit_11_code_quality_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "to": "docs_audit_11_code_quality_audit_ts_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_11_code_quality_audit_ts_001", "to": "docs_audit_11_code_quality_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit", "to": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "to": "docs_audit_12_testing_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "to": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "to": "docs_audit_12_testing_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "to": "docs_audit_12_testing_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "to": "docs_audit_12_testing_audit_test_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_12_testing_audit_test_001", "to": "docs_audit_12_testing_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit", "to": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "to": "docs_audit_13_devops_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "to": "docs_audit_13_devops_audit_devops_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "to": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "to": "docs_audit_13_devops_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "to": "docs_audit_13_devops_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_13_devops_audit_devops_001", "to": "docs_audit_13_devops_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit", "to": "docs_audit_14_documentation_audit_documentation_audit_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_documentation_audit_report", "to": "docs_audit_14_documentation_audit_completion_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_documentation_audit_report", "to": "docs_audit_14_documentation_audit_doc_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_documentation_audit_report", "to": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_documentation_audit_report", "to": "docs_audit_14_documentation_audit_finding_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_documentation_audit_report", "to": "docs_audit_14_documentation_audit_findings", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_acceptance_criteria", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_affected_application", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_affected_files", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_alternative_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_category", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_evidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_implementation_complexity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_notes_and_limitations", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_problem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_recommended_direction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_risks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_root_cause", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_technical_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_testing_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_title", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_user_or_business_impact", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_verification_requirements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_14_documentation_audit_doc_001", "to": "docs_audit_14_documentation_audit_why_it_matters", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary", "to": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "to": "docs_audit_16_deep_audit_summary_1_audit_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "to": "docs_audit_16_deep_audit_summary_2_findings_metrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "to": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "to": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "to": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "to": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_2_findings_metrics", "to": "docs_audit_16_deep_audit_summary_by_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_2_findings_metrics", "to": "docs_audit_16_deep_audit_summary_by_domain", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_2_findings_metrics", "to": "docs_audit_16_deep_audit_summary_by_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", "to": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", "to": "docs_audit_16_deep_audit_summary_executed_commands_results", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", "to": "docs_audit_16_deep_audit_summary_inspected_scopes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_18_compiler_diagnostic_dispositions", "to": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", "to": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_19_finding_verification_report", "to": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", "to": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", "to": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary", "to": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "to": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "to": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "to": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "to": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", "to": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", "to": "docs_audit_21_phase2_quality_gate_summary_by_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", "to": "docs_audit_21_phase2_quality_gate_summary_by_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_24_omitted_file_inspection_report", "to": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", "to": "docs_audit_24_omitted_file_inspection_report_conclusion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", "to": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", "to": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report", "to": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", "to": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", "to": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", "to": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", "to": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", "to": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", "to": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", "to": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", "to": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", "to": "docs_audit_26_phase2_integrity_repair_report_by_confidence", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", "to": "docs_audit_26_phase2_integrity_repair_report_by_severity", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure", "to": "docs_audit_31_module_audit_closure_module_audit_closure_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_module_audit_closure_report", "to": "docs_audit_31_module_audit_closure_conclusion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_module_audit_closure_report", "to": "docs_audit_31_module_audit_closure_required_review_group_closures", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_10_orders_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_7_users_addresses_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_8_pets_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_31_module_audit_closure_required_review_group_closures", "to": "docs_audit_31_module_audit_closure_9_products_backend", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_33_final_phase2_audit_closure", "to": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "to": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "to": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "to": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "to": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_traceability_matrix", "to": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "to": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "to": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "to": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review", "to": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_1_executive_assessment", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", "to": "docs_audit_phase3_1_backlog_review_9_architecture_review", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log", "to": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", "to": "docs_audit_phase3_1_change_log_task_modifications_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_task_modifications_log", "to": "docs_audit_phase3_1_change_log_1_task_auth_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_task_modifications_log", "to": "docs_audit_phase3_1_change_log_2_task_fin_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_task_modifications_log", "to": "docs_audit_phase3_1_change_log_3_decision_002", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_task_modifications_log", "to": "docs_audit_phase3_1_change_log_4_task_verify_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_task_modifications_log", "to": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_1_change_log_task_modifications_log", "to": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log", "to": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", "to": "docs_audit_phase3_2_change_log_comprehensive_change_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_10_task_verify_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_1_task_sec_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_2_task_sec_002", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_3_task_sec_003", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_4_task_fin_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_5_task_build_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_6_task_auth_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_7_task_fe_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_8_task_devops_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_change_log_comprehensive_change_log", "to": "docs_audit_phase3_2_change_log_9_task_doc_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_implementation_readiness", "to": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", "to": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", "to": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", "to": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_readme", "to": "frontend_admin_panel_readme_react_typescript_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_readme_react_typescript_vite", "to": "frontend_admin_panel_readme_expanding_the_eslint_configuration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_readme_react_typescript_vite", "to": "frontend_admin_panel_readme_react_compiler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", "to": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", "to": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", "to": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_readme", "to": "frontend_application_readme_deploy_on_vercel", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_readme", "to": "frontend_application_readme_getting_started", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_readme", "to": "frontend_application_readme_learn_more", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", "to": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_coverage_map", "to": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", "to": "test_coverage_map_\u06f1_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u06cc_user_roles", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", "to": "test_coverage_map_\u06f2_\u0645\u0627\u062a\u0631\u06cc\u0633_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627_\u0648_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631_feature_flow_matrix", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", "to": "test_coverage_map_\u06f3_\u0648\u0636\u0639\u06cc\u062a_\u067e\u0648\u0634\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0633\u0648\u0626\u06cc\u062a_\u06f1\u06f1\u06af\u0627\u0646\u0647_final_11_test_suites_status", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", "to": "test_coverage_map_\u06f4_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u0646\u06af\u0647\u062f\u0627\u0631\u06cc_\u0648_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0686\u0631\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_\u0628\u062f\u0648\u0646_\u0634\u06a9\u0633\u062a\u0646_\u062a\u0633\u062a_\u0647\u0627_developer_maintenance_guide", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_vazirmatn_v33_003_authors", "to": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "dejavu_sans", "to": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "roboto_font", "to": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_vazirmatn_v33_003_ofl", "to": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_adr_auth_001", "to": "docs_audit_master_task_backlog", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_master_task_backlog", "to": "docs_audit_phase3_execution_plan", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "vazir_font", "to": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", "to": "frontend_application_public_fonts_shabnam_font_v5_0_1_sample", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_02_user_guide_roles", "to": "backend_uploads_1781288429353_508765350", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "database_schema_products", "to": "readme_smartadvisor", "label": "conceptually_related_to", "title": "conceptually_related_to [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "database_schema_users", "to": "docker_backend_prod", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "docs_audit_05_architectural_audit_findings", "to": "docs_audit_10_security_audit_findings", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "docs_audit_cross_boundary_dependencies", "to": "docs_audit_frontend_integration_requirements", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "frontend_application_agents", "to": "image_pharma_lab", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Roles", "count": 40}, {"cid": 1, "color": "#F28E2B", "label": "app.module.ts", "count": 57}, {"cid": 2, "color": "#E15759", "label": "ApiResponse", "count": 20}, {"cid": 3, "color": "#76B7B2", "label": "productService.ts", "count": 62}, {"cid": 4, "color": "#59A14F", "label": "HomeClient.tsx", "count": 29}, {"cid": 5, "color": "#EDC948", "label": "CmsController", "count": 53}, {"cid": 6, "color": "#B07AA1", "label": "tickets.controller.ts", "count": 48}, {"cid": 7, "color": "#FF9DA7", "label": "SmsSettingsPage.tsx", "count": 11}, {"cid": 8, "color": "#9C755F", "label": "SmsService", "count": 108}, {"cid": 9, "color": "#BAB0AC", "label": "devDependencies", "count": 9}, {"cid": 10, "color": "#4E79A7", "label": "CreateReviewDto", "count": 37}, {"cid": 11, "color": "#F28E2B", "label": "UsersService", "count": 64}, {"cid": 12, "color": "#E15759", "label": "index.ts", "count": 45}, {"cid": 13, "color": "#76B7B2", "label": "app-audit-verification.e2e-spec.js", "count": 41}, {"cid": 14, "color": "#59A14F", "label": "toPersian", "count": 56}, {"cid": 15, "color": "#EDC948", "label": "src/services/api.ts", "count": 49}, {"cid": 16, "color": "#B07AA1", "label": "DoctorQueryDto", "count": 39}, {"cid": 17, "color": "#FF9DA7", "label": "schema.ts", "count": 23}, {"cid": 18, "color": "#9C755F", "label": "JwtAuthGuard", "count": 32}, {"cid": 19, "color": "#BAB0AC", "label": "admin.service.ts", "count": 27}, {"cid": 20, "color": "#4E79A7", "label": "CreateVideoDto", "count": 47}, {"cid": 21, "color": "#F28E2B", "label": "useSettingsStore", "count": 43}, {"cid": 22, "color": "#E15759", "label": "AdminService", "count": 23}, {"cid": 23, "color": "#76B7B2", "label": "MenuService", "count": 33}, {"cid": 24, "color": "#59A14F", "label": "BE-001", "count": 33}, {"cid": 25, "color": "#EDC948", "label": "FE-001", "count": 32}, {"cid": 26, "color": "#B07AA1", "label": "ADM-001", "count": 32}, {"cid": 27, "color": "#FF9DA7", "label": "DB-001", "count": 32}, {"cid": 28, "color": "#9C755F", "label": "TS-001", "count": 32}, {"cid": 29, "color": "#BAB0AC", "label": "TEST-001", "count": 32}, {"cid": 30, "color": "#4E79A7", "label": "DEVOPS-001", "count": 32}, {"cid": 31, "color": "#F28E2B", "label": "DOC-001", "count": 32}, {"cid": 32, "color": "#E15759", "label": "adminRoutes.tsx", "count": 33}, {"cid": 33, "color": "#76B7B2", "label": "WholesaleService", "count": 24}, {"cid": 34, "color": "#59A14F", "label": "B2BService", "count": 30}, {"cid": 35, "color": "#EDC948", "label": "ContactService", "count": 24}, {"cid": 36, "color": "#B07AA1", "label": "FaqService", "count": 28}, {"cid": 37, "color": "#FF9DA7", "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", "count": 29}, {"cid": 38, "color": "#9C755F", "label": "Button", "count": 17}, {"cid": 39, "color": "#BAB0AC", "label": "CategoriesController", "count": 28}, {"cid": 40, "color": "#4E79A7", "label": "MediaController", "count": 30}, {"cid": 41, "color": "#F28E2B", "label": "What You Must Do When Invoked", "count": 27}, {"cid": 42, "color": "#E15759", "label": "SslController", "count": 26}, {"cid": 43, "color": "#76B7B2", "label": "BannersService", "count": 27}, {"cid": 44, "color": "#59A14F", "label": "TestimonialsService", "count": 26}, {"cid": 45, "color": "#EDC948", "label": "What You Must Do When Invoked", "count": 27}, {"cid": 46, "color": "#B07AA1", "label": "HomeController", "count": 17}, {"cid": 47, "color": "#FF9DA7", "label": "IngredientsService", "count": 26}, {"cid": 48, "color": "#9C755F", "label": "Button.tsx", "count": 31}, {"cid": 49, "color": "#BAB0AC", "label": "devDependencies", "count": 19}, {"cid": 50, "color": "#4E79A7", "label": "devDependencies", "count": 17}, {"cid": 51, "color": "#F28E2B", "label": "BlogsController", "count": 52}, {"cid": 52, "color": "#E15759", "label": "PrescriptionsService", "count": 24}, {"cid": 53, "color": "#76B7B2", "label": "SmartAdvisorService", "count": 24}, {"cid": 54, "color": "#59A14F", "label": "Modal.tsx", "count": 33}, {"cid": 55, "color": "#EDC948", "label": "UITexts.tsx", "count": 17}, {"cid": 56, "color": "#B07AA1", "label": "PrescriptionsManager.tsx", "count": 22}, {"cid": 57, "color": "#FF9DA7", "label": "Role & Core Objective", "count": 23}, {"cid": 58, "color": "#9C755F", "label": "Orders.tsx", "count": 11}, {"cid": 59, "color": "#BAB0AC", "label": "compilerOptions", "count": 31}, {"cid": 60, "color": "#4E79A7", "label": "admin.controller.ts", "count": 17}, {"cid": 61, "color": "#F28E2B", "label": "ProductPage.tsx", "count": 54}, {"cid": 62, "color": "#E15759", "label": "admin.module.ts", "count": 57}, {"cid": 63, "color": "#76B7B2", "label": "dependencies", "count": 23}, {"cid": 64, "color": "#59A14F", "label": "compilerOptions", "count": 21}, {"cid": 65, "color": "#EDC948", "label": "CreateApiKeyDto", "count": 10}, {"cid": 66, "color": "#B07AA1", "label": "AdminController", "count": 26}, {"cid": 67, "color": "#FF9DA7", "label": "ApiKeysService", "count": 10}, {"cid": 68, "color": "#9C755F", "label": "components/Skeleton.tsx", "count": 12}, {"cid": 69, "color": "#BAB0AC", "label": "Required Review Group Closures", "count": 20}, {"cid": 70, "color": "#4E79A7", "label": "compilerOptions", "count": 24}, {"cid": 71, "color": "#F28E2B", "label": "getPageMetadata", "count": 36}, {"cid": 72, "color": "#E15759", "label": "Operational Rules & Boundaries", "count": 19}, {"cid": 73, "color": "#76B7B2", "label": "Operational Rules & Boundaries", "count": 19}, {"cid": 74, "color": "#59A14F", "label": "WikiController", "count": 19}, {"cid": 75, "color": "#EDC948", "label": "PetsController", "count": 75}, {"cid": 76, "color": "#B07AA1", "label": "RevalidationService", "count": 52}, {"cid": 77, "color": "#FF9DA7", "label": "seo.module.ts", "count": 19}, {"cid": 78, "color": "#9C755F", "label": "rss.xml/route.ts", "count": 4}, {"cid": 79, "color": "#BAB0AC", "label": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "count": 18}, {"cid": 80, "color": "#4E79A7", "label": "Operational Rules & Boundaries", "count": 18}, {"cid": 81, "color": "#F28E2B", "label": "Operational Rules & Boundaries", "count": 18}, {"cid": 82, "color": "#E15759", "label": "scripts", "count": 29}, {"cid": 83, "color": "#76B7B2", "label": "dependencies", "count": 21}, {"cid": 84, "color": "#59A14F", "label": "Role & Core Objective", "count": 17}, {"cid": 85, "color": "#EDC948", "label": "app.e2e-spec.js", "count": 4}, {"cid": 86, "color": "#B07AA1", "label": "zibal.service.ts", "count": 17}, {"cid": 87, "color": "#FF9DA7", "label": "dependencies", "count": 19}, {"cid": 88, "color": "#9C755F", "label": "CreateEBankCheckoutDto", "count": 9}, {"cid": 89, "color": "#BAB0AC", "label": "seed-products.ts", "count": 16}, {"cid": 90, "color": "#4E79A7", "label": "20260526145407_init/migration.sql", "count": 15}, {"cid": 91, "color": "#F28E2B", "label": "Reconciled Audit Roles & Assignments", "count": 16}, {"cid": 92, "color": "#E15759", "label": "OrdersService", "count": 57}, {"cid": 93, "color": "#76B7B2", "label": "auth.controller.ts", "count": 58}, {"cid": 94, "color": "#59A14F", "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", "count": 15}, {"cid": 95, "color": "#EDC948", "label": "wiki/[slug]/page.tsx", "count": 18}, {"cid": 96, "color": "#B07AA1", "label": "compilerOptions", "count": 33}, {"cid": 97, "color": "#FF9DA7", "label": "AdminTransactionFilterDto", "count": 9}, {"cid": 98, "color": "#9C755F", "label": "scripts", "count": 15}, {"cid": 99, "color": "#BAB0AC", "label": "BlogsController", "count": 21}, {"cid": 100, "color": "#4E79A7", "label": "Deep Audit Summary Report", "count": 14}, {"cid": 101, "color": "#F28E2B", "label": "Operational Rules & Boundaries", "count": 13}, {"cid": 102, "color": "#E15759", "label": "jest", "count": 13}, {"cid": 103, "color": "#76B7B2", "label": "Comprehensive Change Log", "count": 13}, {"cid": 104, "color": "#59A14F", "label": "Products.tsx", "count": 32}, {"cid": 105, "color": "#EDC948", "label": "Operational Rules & Boundaries", "count": 12}, {"cid": 106, "color": "#B07AA1", "label": "InitiatePaymentDto", "count": 8}, {"cid": 107, "color": "#FF9DA7", "label": "PaginationDto", "count": 39}, {"cid": 108, "color": "#9C755F", "label": "PrismaService", "count": 53}, {"cid": 109, "color": "#BAB0AC", "label": "1. Summary of Integrity Repairs Performed", "count": 12}, {"cid": 110, "color": "#4E79A7", "label": "Operational Rules & Boundaries", "count": 11}, {"cid": 111, "color": "#F28E2B", "label": "Operational Rules & Boundaries", "count": 11}, {"cid": 112, "color": "#E15759", "label": "Operational Rules & Boundaries", "count": 11}, {"cid": 113, "color": "#76B7B2", "label": "settingsStore.ts", "count": 44}, {"cid": 114, "color": "#59A14F", "label": "AppService", "count": 11}, {"cid": 115, "color": "#EDC948", "label": "MediaSelector.tsx", "count": 69}, {"cid": 116, "color": "#B07AA1", "label": "Vazirmatn Changelog", "count": 11}, {"cid": 117, "color": "#FF9DA7", "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", "count": 11}, {"cid": 118, "color": "#9C755F", "label": "Operational Rules & Boundaries", "count": 10}, {"cid": 119, "color": "#BAB0AC", "label": "compilerOptions", "count": 10}, {"cid": 120, "color": "#4E79A7", "label": "compilerOptions", "count": 10}, {"cid": 121, "color": "#F28E2B", "label": "backend/README.md", "count": 10}, {"cid": 122, "color": "#E15759", "label": "Body", "count": 26}, {"cid": 123, "color": "#76B7B2", "label": "auth.service.ts", "count": 42}, {"cid": 124, "color": "#59A14F", "label": "Repository Map", "count": 10}, {"cid": 125, "color": "#EDC948", "label": "validate_integrity.js", "count": 10}, {"cid": 126, "color": "#B07AA1", "label": "admin-panel/package.json", "count": 10}, {"cid": 127, "color": "#FF9DA7", "label": "Sahel-Font", "count": 10}, {"cid": 128, "color": "#9C755F", "label": "MetricsController", "count": 7}, {"cid": 129, "color": "#BAB0AC", "label": "WikiController", "count": 12}, {"cid": 130, "color": "#4E79A7", "label": "Sahel-Font", "count": 10}, {"cid": 131, "color": "#F28E2B", "label": "Role & Core Objective", "count": 9}, {"cid": 132, "color": "#E15759", "label": "orchestrate.py", "count": 9}, {"cid": 133, "color": "#76B7B2", "label": "backend/package.json", "count": 9}, {"cid": 134, "color": "#59A14F", "label": "blog/page.tsx", "count": 7}, {"cid": 135, "color": "#EDC948", "label": "graphify reference: extra exports and benchmark", "count": 9}, {"cid": 136, "color": "#B07AA1", "label": "Phase 2 Final Quality Gate Summary Report", "count": 9}, {"cid": 137, "color": "#FF9DA7", "label": "Task Modifications Log", "count": 9}, {"cid": 138, "color": "#9C755F", "label": "Install", "count": 9}, {"cid": 139, "color": "#BAB0AC", "label": "layout.tsx", "count": 12}, {"cid": 140, "color": "#4E79A7", "label": "ErrorBoundary", "count": 9}, {"cid": 141, "color": "#F28E2B", "label": "application/package.json", "count": 9}, {"cid": 142, "color": "#E15759", "label": "start-dev.js", "count": 9}, {"cid": 143, "color": "#76B7B2", "label": "generate-openapi.js", "count": 8}, {"cid": 144, "color": "#59A14F", "label": "SafeImage.tsx", "count": 37}, {"cid": 145, "color": "#EDC948", "label": "WholesaleApplyDto", "count": 7}, {"cid": 146, "color": "#B07AA1", "label": "System Discovery", "count": 8}, {"cid": 147, "color": "#FF9DA7", "label": "torob.controller.ts", "count": 11}, {"cid": 148, "color": "#9C755F", "label": "ProductDto", "count": 16}, {"cid": 149, "color": "#BAB0AC", "label": "class-transformer", "count": 2}, {"cid": 150, "color": "#4E79A7", "label": "Product Requirement Document (PRD)", "count": 7}, {"cid": 151, "color": "#F28E2B", "label": "helmet", "count": 2}, {"cid": 152, "color": "#E15759", "label": "@eslint/js", "count": 2}, {"cid": 153, "color": "#76B7B2", "label": "exclude", "count": 9}, {"cid": 154, "color": "#59A14F", "label": "Baseline Command Plan & Reconciled Command History", "count": 7}, {"cid": 155, "color": "#EDC948", "label": "seo-backfill.ts", "count": 4}, {"cid": 156, "color": "#B07AA1", "label": "manual-test-scenarios.md", "count": 1}, {"cid": 157, "color": "#FF9DA7", "label": "ErrorPages.tsx", "count": 13}, {"cid": 158, "color": "#9C755F", "label": "media/[...path]/route.ts", "count": 6}, {"cid": 159, "color": "#BAB0AC", "label": "with-vpn.sh", "count": 7}, {"cid": 160, "color": "#4E79A7", "label": "Architecture Specification", "count": 6}, {"cid": 161, "color": "#F28E2B", "label": "Project Health Audit Report", "count": 6}, {"cid": 162, "color": "#E15759", "label": "nest-cli.json", "count": 6}, {"cid": 163, "color": "#76B7B2", "label": "graphify reference: query, path, explain", "count": 6}, {"cid": 164, "color": "#59A14F", "label": "Open Questions", "count": 6}, {"cid": 165, "color": "#EDC948", "label": "Final Phase 2 Audit Closure Report", "count": 6}, {"cid": 166, "color": "#B07AA1", "label": "open-browsers.js", "count": 6}, {"cid": 167, "color": "#FF9DA7", "label": "\ud83d\udcdd Active Agent Working Scratchpad", "count": 5}, {"cid": 168, "color": "#9C755F", "label": "\ud83d\udd0d Code Health Audit Review (01_auditor)", "count": 5}, {"cid": 169, "color": "#BAB0AC", "label": "paginated-response.schema.ts", "count": 5}, {"cid": 170, "color": "#4E79A7", "label": "Vazirmatn Font README", "count": 5}, {"cid": 171, "color": "#F28E2B", "label": "Omitted File Inspection Report", "count": 5}, {"cid": 172, "color": "#E15759", "label": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", "count": 5}, {"cid": 173, "color": "#76B7B2", "label": "Phase 3 Audit Traceability Matrix", "count": 5}, {"cid": 174, "color": "#59A14F", "label": "rebuild_honest_ledger.js", "count": 5}, {"cid": 175, "color": "#EDC948", "label": "validate_evidence_grade.js", "count": 5}, {"cid": 176, "color": "#B07AA1", "label": "uploads/[...path]/route.ts", "count": 6}, {"cid": 177, "color": "#FF9DA7", "label": "eslint-config-prettier", "count": 2}, {"cid": 178, "color": "#9C755F", "label": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", "count": 6}, {"cid": 179, "color": "#BAB0AC", "label": "eslint-config-next", "count": 2}, {"cid": 180, "color": "#4E79A7", "label": "API Contract Specification", "count": 4}, {"cid": 181, "color": "#F28E2B", "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", "count": 4}, {"cid": 182, "color": "#E15759", "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", "count": 4}, {"cid": 183, "color": "#76B7B2", "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", "count": 4}, {"cid": 184, "color": "#59A14F", "label": "trust-seals/page.tsx", "count": 5}, {"cid": 185, "color": "#EDC948", "label": "CartDrawer.tsx", "count": 8}, {"cid": 186, "color": "#B07AA1", "label": "seed-ui-texts.ts", "count": 4}, {"cid": 187, "color": "#FF9DA7", "label": "seed-wiki.ts", "count": 4}, {"cid": 188, "color": "#9C755F", "label": "update-blog.dto.ts", "count": 4}, {"cid": 189, "color": "#BAB0AC", "label": "update-home.dto.ts", "count": 4}, {"cid": 190, "color": "#4E79A7", "label": "update-wiki.dto.ts", "count": 4}, {"cid": 191, "color": "#F28E2B", "label": "graphify reference: add a URL and watch a folder", "count": 4}, {"cid": 192, "color": "#E15759", "label": "graphify reference: commit hook and native CLAUDE.md integration", "count": 4}, {"cid": 193, "color": "#76B7B2", "label": "graphify reference: incremental update and cluster-only", "count": 4}, {"cid": 194, "color": "#59A14F", "label": "Raw Finding Verification & Disposition Report", "count": 4}, {"cid": 195, "color": "#EDC948", "label": "React + TypeScript + Vite", "count": 4}, {"cid": 196, "color": "#B07AA1", "label": "Select.tsx", "count": 4}, {"cid": 197, "color": "#FF9DA7", "label": "AuthModal.tsx", "count": 29}, {"cid": 198, "color": "#9C755F", "label": "app/page.tsx", "count": 4}, {"cid": 199, "color": "#BAB0AC", "label": "prisma", "count": 2}, {"cid": 200, "color": "#4E79A7", "label": "application/README.md", "count": 4}, {"cid": 201, "color": "#F28E2B", "label": "deploy.sh", "count": 4}, {"cid": 202, "color": "#E15759", "label": "\ud83d\udd12 Security & Performance Review (09_devops_security)", "count": 3}, {"cid": 203, "color": "#76B7B2", "label": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "count": 3}, {"cid": 204, "color": "#59A14F", "label": "reviews.service.ts", "count": 7}, {"cid": 205, "color": "#EDC948", "label": "prisma/scientificTerms.ts", "count": 3}, {"cid": 206, "color": "#B07AA1", "label": "seed-blogs.ts", "count": 3}, {"cid": 207, "color": "#FF9DA7", "label": "seed-custom.ts", "count": 3}, {"cid": 208, "color": "#9C755F", "label": "graphify reference: GitHub clone and cross-repo merge", "count": 3}, {"cid": 209, "color": "#BAB0AC", "label": "graphify reference: transcribe video and audio", "count": 3}, {"cid": 210, "color": "#4E79A7", "label": "Compiler Diagnostic Dispositions", "count": 3}, {"cid": 211, "color": "#F28E2B", "label": "Master Task Backlog (Phase 3.3)", "count": 3}, {"cid": 212, "color": "#E15759", "label": "build_manifest.js", "count": 3}, {"cid": 213, "color": "#76B7B2", "label": "generate_classification.js", "count": 3}, {"cid": 214, "color": "#59A14F", "label": "generate_evidence.js", "count": 3}, {"cid": 215, "color": "#EDC948", "label": "generate_ledger.js", "count": 3}, {"cid": 216, "color": "#B07AA1", "label": "generate_manifest.js", "count": 3}, {"cid": 217, "color": "#FF9DA7", "label": "sync_honest_manifest.js", "count": 3}, {"cid": 218, "color": "#9C755F", "label": "sync_manifest.js", "count": 3}, {"cid": 219, "color": "#BAB0AC", "label": "FormField.tsx", "count": 3}, {"cid": 220, "color": "#4E79A7", "label": "js-yaml", "count": 2}, {"cid": 221, "color": "#F28E2B", "label": "Textarea.tsx", "count": 3}, {"cid": 222, "color": "#E15759", "label": "admin-panel/tsconfig.json", "count": 3}, {"cid": 223, "color": "#76B7B2", "label": "tailwindcss", "count": 2}, {"cid": 224, "color": "#59A14F", "label": "wiki/page.tsx", "count": 5}, {"cid": 225, "color": "#EDC948", "label": "next.config.ts", "count": 3}, {"cid": 226, "color": "#B07AA1", "label": "Shabnam Font README", "count": 3}, {"cid": 227, "color": "#FF9DA7", "label": "AGENTS.md", "count": 2}, {"cid": 228, "color": "#9C755F", "label": "rules/graphify.md", "count": 2}, {"cid": 229, "color": "#BAB0AC", "label": ".agents/workflows/graphify.md", "count": 2}, {"cid": 230, "color": "#4E79A7", "label": "instructions.md", "count": 2}, {"cid": 231, "color": "#F28E2B", "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "count": 3}, {"cid": 232, "color": "#E15759", "label": "@nestjs/core", "count": 2}, {"cid": 233, "color": "#76B7B2", "label": "@nestjs/jwt", "count": 2}, {"cid": 234, "color": "#59A14F", "label": "source-map-support", "count": 2}, {"cid": 235, "color": "#EDC948", "label": "ts-loader", "count": 2}, {"cid": 236, "color": "#B07AA1", "label": "ts-node", "count": 2}, {"cid": 237, "color": "#FF9DA7", "label": "tsconfig-paths", "count": 2}, {"cid": 238, "color": "#9C755F", "label": "@vitejs/plugin-react", "count": 2}, {"cid": 239, "color": "#BAB0AC", "label": "@types/bcrypt", "count": 2}, {"cid": 240, "color": "#4E79A7", "label": "supertest", "count": 2}, {"cid": 241, "color": "#F28E2B", "label": "blog.entity.ts", "count": 2}, {"cid": 242, "color": "#E15759", "label": "home.entity.ts", "count": 2}, {"cid": 243, "color": "#76B7B2", "label": "wiki.entity.ts", "count": 2}, {"cid": 244, "color": "#59A14F", "label": "User Profile Photo", "count": 2}, {"cid": 245, "color": "#EDC948", "label": "CLAUDE.md", "count": 2}, {"cid": 246, "color": "#B07AA1", "label": ".claude/CLAUDE.md", "count": 2}, {"cid": 247, "color": "#FF9DA7", "label": "extraction-spec.md", "count": 2}, {"cid": 248, "color": "#9C755F", "label": "Products Table", "count": 2}, {"cid": 249, "color": "#BAB0AC", "label": "Users Table", "count": 2}, {"cid": 250, "color": "#4E79A7", "label": "Architectural Audit Findings", "count": 2}, {"cid": 251, "color": "#F28E2B", "label": "Cross Boundary Dependencies & Backend Architecture Specification", "count": 2}, {"cid": 252, "color": "#E15759", "label": "Next.js Agent Rules & Brand Guidelines", "count": 2}, {"cid": 253, "color": "#76B7B2", "label": "robots.ts", "count": 2}, {"cid": 254, "color": "#59A14F", "label": "application/eslint.config.mjs", "count": 2}, {"cid": 255, "color": "#EDC948", "label": "postcss.config.mjs", "count": 2}, {"cid": 256, "color": "#B07AA1", "label": "vitest.setup.ts", "count": 3}, {"cid": 257, "color": "#FF9DA7", "label": "backup_db.sh", "count": 2}, {"cid": 258, "color": "#9C755F", "label": "start.sh", "count": 2}, {"cid": 259, "color": "#BAB0AC", "label": "reviews/README.md", "count": 1}, {"cid": 260, "color": "#4E79A7", "label": "backend/eslint.config.mjs", "count": 1}, {"cid": 261, "color": "#F28E2B", "label": "User Login API", "count": 1}, {"cid": 262, "color": "#E15759", "label": "User Logout API", "count": 1}, {"cid": 263, "color": "#76B7B2", "label": "generate-openapi.d.ts", "count": 1}, {"cid": 264, "color": "#59A14F", "label": "@types/compression", "count": 2}, {"cid": 265, "color": "#EDC948", "label": "@nestjs/swagger", "count": 2}, {"cid": 266, "color": "#B07AA1", "label": "@types/express", "count": 2}, {"cid": 267, "color": "#FF9DA7", "label": "@types/jest", "count": 2}, {"cid": 268, "color": "#9C755F", "label": "@types/multer", "count": 2}, {"cid": 269, "color": "#BAB0AC", "label": "@nestjs/throttler", "count": 2}, {"cid": 270, "color": "#4E79A7", "label": "app-audit-verification.e2e-spec.d.ts", "count": 1}, {"cid": 271, "color": "#F28E2B", "label": "app.e2e-spec.d.ts", "count": 1}, {"cid": 272, "color": "#E15759", "label": "Canina Pharma GmbH", "count": 1}, {"cid": 273, "color": "#76B7B2", "label": "Pets Table", "count": 1}, {"cid": 274, "color": "#59A14F", "label": "Canina Iran Project Introduction", "count": 1}, {"cid": 275, "color": "#EDC948", "label": "Developer Standards and Architecture", "count": 1}, {"cid": 276, "color": "#B07AA1", "label": "Frontend & Admin Architecture Route Map Specification", "count": 1}, {"cid": 277, "color": "#FF9DA7", "label": "Project Backlog and Tasks", "count": 1}, {"cid": 278, "color": "#9C755F", "label": "eslint.config.js", "count": 1}, {"cid": 279, "color": "#BAB0AC", "label": "postcss.config.js", "count": 1}, {"cid": 280, "color": "#4E79A7", "label": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "count": 1}, {"cid": 281, "color": "#F28E2B", "label": "shabnam-font-v5.0.1/CHANGELOG.md", "count": 1}, {"cid": 282, "color": "#E15759", "label": "tailwind.config.js", "count": 1}, {"cid": 283, "color": "#76B7B2", "label": "vite.config.ts", "count": 1}, {"cid": 284, "color": "#59A14F", "label": "application/CLAUDE.md", "count": 1}, {"cid": 285, "color": "#EDC948", "label": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "count": 1}, {"cid": 286, "color": "#B07AA1", "label": "Sahel Font Sample", "count": 1}, {"cid": 287, "color": "#FF9DA7", "label": "Shabnam Font Changelog", "count": 1}, {"cid": 288, "color": "#9C755F", "label": "Vazirmatn Changelog", "count": 1}, {"cid": 289, "color": "#BAB0AC", "label": "vitest.config.ts", "count": 1}, {"cid": 290, "color": "#4E79A7", "label": "Sahel Font Variable Sample", "count": 1}, {"cid": 291, "color": "#F28E2B", "label": "Shabnam Font Sample", "count": 1}, {"cid": 292, "color": "#E15759", "label": "Production Docker Compose", "count": 1}, {"cid": 293, "color": "#76B7B2", "label": "Staging Docker Compose", "count": 1}, {"cid": 294, "color": "#59A14F", "label": "ZibalService", "count": 48}, {"cid": 295, "color": "#EDC948", "label": "passport", "count": 2}, {"cid": 296, "color": "#B07AA1", "label": "reflect-metadata", "count": 2}, {"cid": 297, "color": "#FF9DA7", "label": "ZibalEBankService", "count": 16}, {"cid": 298, "color": "#9C755F", "label": ".initiateOrderPayment", "count": 17}, {"cid": 299, "color": "#BAB0AC", "label": "@tailwindcss/postcss", "count": 2}, {"cid": 300, "color": "#4E79A7", "label": "typescript", "count": 2}, {"cid": 301, "color": "#F28E2B", "label": "swagger-ui-express", "count": 2}, {"cid": 302, "color": "#E15759", "label": "typescript-eslint", "count": 2}, {"cid": 303, "color": "#76B7B2", "label": "@nestjs/schematics", "count": 2}, {"cid": 304, "color": "#59A14F", "label": "@eslint/eslintrc", "count": 2}, {"cid": 305, "color": "#EDC948", "label": "eslint-plugin-prettier", "count": 2}, {"cid": 306, "color": "#B07AA1", "label": "eslint-plugin-react-hooks", "count": 2}, {"cid": 307, "color": "#FF9DA7", "label": "globals", "count": 2}, {"cid": 308, "color": "#9C755F", "label": "@nestjs/cli", "count": 2}, {"cid": 309, "color": "#BAB0AC", "label": "axios", "count": 1}, {"cid": 310, "color": "#4E79A7", "label": "tailwindcss", "count": 1}, {"cid": 311, "color": "#F28E2B", "label": "jest", "count": 2}, {"cid": 312, "color": "#E15759", "label": "@types/passport-jwt", "count": 2}, {"cid": 313, "color": "#76B7B2", "label": "@nestjs/testing", "count": 2}, {"cid": 314, "color": "#59A14F", "label": "prettier", "count": 2}, {"cid": 315, "color": "#EDC948", "label": "typescript", "count": 2}, {"cid": 316, "color": "#B07AA1", "label": "ts-jest", "count": 2}, {"cid": 317, "color": "#FF9DA7", "label": "revalidate/route.ts", "count": 4}, {"cid": 318, "color": "#9C755F", "label": "MaskableField.tsx", "count": 3}, {"cid": 319, "color": "#BAB0AC", "label": "@types/js-yaml", "count": 2}, {"cid": 320, "color": "#4E79A7", "label": "@types/supertest", "count": 2}, {"cid": 321, "color": "#F28E2B", "label": "orders/page.tsx", "count": 2}, {"cid": 322, "color": "#E15759", "label": "pets/page.tsx", "count": 2}, {"cid": 323, "color": "#76B7B2", "label": "typescript-eslint", "count": 2}, {"cid": 324, "color": "#59A14F", "label": "@tailwindcss/postcss", "count": 2}, {"cid": 325, "color": "#EDC948", "label": "@types/react-dom", "count": 2}, {"cid": 327, "color": "#FF9DA7", "label": "eslint-plugin-react-refresh", "count": 2}];
|
|
|
|
// HTML-escape helper — prevents XSS when injecting graph data into innerHTML
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,''');
|
|
}
|
|
|
|
// Build vis datasets
|
|
const nodesDS = new vis.DataSet(RAW_NODES.map(n => ({
|
|
id: n.id, label: n.label, color: n.color, size: n.size,
|
|
font: n.font, title: n.title,
|
|
_community: n.community, _community_name: n.community_name,
|
|
_source_file: n.source_file, _file_type: n.file_type, _degree: n.degree,
|
|
})));
|
|
|
|
const edgesDS = new vis.DataSet(RAW_EDGES.map((e, i) => ({
|
|
id: i, from: e.from, to: e.to,
|
|
label: '',
|
|
title: e.title,
|
|
dashes: e.dashes,
|
|
width: e.width,
|
|
color: e.color,
|
|
arrows: { to: { enabled: true, scaleFactor: 0.5 } },
|
|
})));
|
|
|
|
const container = document.getElementById('graph');
|
|
const network = new vis.Network(container, { nodes: nodesDS, edges: edgesDS }, {
|
|
physics: {
|
|
enabled: true,
|
|
solver: 'forceAtlas2Based',
|
|
forceAtlas2Based: {
|
|
gravitationalConstant: -60,
|
|
centralGravity: 0.005,
|
|
springLength: 120,
|
|
springConstant: 0.08,
|
|
damping: 0.4,
|
|
avoidOverlap: 0.8,
|
|
},
|
|
stabilization: { iterations: 200, fit: true },
|
|
},
|
|
interaction: {
|
|
hover: true,
|
|
tooltipDelay: 100,
|
|
hideEdgesOnDrag: true,
|
|
navigationButtons: false,
|
|
keyboard: false,
|
|
},
|
|
nodes: { shape: 'dot', borderWidth: 1.5 },
|
|
edges: { smooth: { type: 'continuous', roundness: 0.2 }, selectionWidth: 3 },
|
|
});
|
|
|
|
network.once('stabilizationIterationsDone', () => {
|
|
network.setOptions({ physics: { enabled: false } });
|
|
});
|
|
|
|
function showInfo(nodeId) {
|
|
const n = nodesDS.get(nodeId);
|
|
if (!n) return;
|
|
const neighborIds = network.getConnectedNodes(nodeId);
|
|
const neighborItems = neighborIds.map(nid => {
|
|
const nb = nodesDS.get(nid);
|
|
const color = nb ? nb.color.background : '#555';
|
|
return `<span class="neighbor-link" style="border-left-color:${esc(color)}" data-nid="${esc(nid)}">${esc(nb ? nb.label : nid)}</span>`;
|
|
}).join('');
|
|
document.getElementById('info-content').innerHTML = `
|
|
<div class="field"><b>${esc(n.label)}</b></div>
|
|
<div class="field">Type: ${esc(n._file_type || 'unknown')}</div>
|
|
<div class="field">Community: ${esc(n._community_name)}</div>
|
|
<div class="field">Source: ${esc(n._source_file || '-')}</div>
|
|
<div class="field">Degree: ${n._degree}</div>
|
|
${neighborIds.length ? `<div class="field" style="margin-top:8px;color:#aaa;font-size:11px">Neighbors (${neighborIds.length})</div><div id="neighbors-list">${neighborItems}</div>` : ''}
|
|
`;
|
|
}
|
|
|
|
function focusNode(nodeId) {
|
|
network.focus(nodeId, { scale: 1.4, animation: true });
|
|
network.selectNodes([nodeId]);
|
|
showInfo(nodeId);
|
|
}
|
|
|
|
// Neighbor links use a data attribute + one delegated listener rather than an
|
|
// inline onclick. A node id/label sourced from a document or a scraped URL
|
|
// (graphify add) can contain a double-quote; dropping the stringified id
|
|
// unescaped into a quoted onclick both broke every link and allowed a hostile
|
|
// source to inject an event handler into the local report (stored XSS, #1838).
|
|
// esc() on data-nid keeps the value inside the attribute; the listener reads it
|
|
// back verbatim. Bound to document so it survives the innerHTML rebuild that
|
|
// recreates #neighbors-list on each showInfo().
|
|
document.addEventListener('click', e => {
|
|
const el = e.target.closest('.neighbor-link');
|
|
if (el && el.dataset.nid !== undefined) focusNode(el.dataset.nid);
|
|
});
|
|
|
|
// Track hovered node — hover detection is more reliable than click params
|
|
let hoveredNodeId = null;
|
|
network.on('hoverNode', params => {
|
|
hoveredNodeId = params.node;
|
|
container.style.cursor = 'pointer';
|
|
});
|
|
network.on('blurNode', () => {
|
|
hoveredNodeId = null;
|
|
container.style.cursor = 'default';
|
|
});
|
|
container.addEventListener('click', () => {
|
|
if (hoveredNodeId !== null) {
|
|
showInfo(hoveredNodeId);
|
|
network.selectNodes([hoveredNodeId]);
|
|
}
|
|
});
|
|
network.on('click', params => {
|
|
if (params.nodes.length > 0) {
|
|
showInfo(params.nodes[0]);
|
|
} else if (hoveredNodeId === null) {
|
|
document.getElementById('info-content').innerHTML = '<span class="empty">Click a node to inspect it</span>';
|
|
}
|
|
});
|
|
|
|
const searchInput = document.getElementById('search');
|
|
const searchResults = document.getElementById('search-results');
|
|
searchInput.addEventListener('input', () => {
|
|
const q = searchInput.value.toLowerCase().trim();
|
|
searchResults.innerHTML = '';
|
|
if (!q) { searchResults.style.display = 'none'; return; }
|
|
const matches = RAW_NODES.filter(n => n.label.toLowerCase().includes(q)).slice(0, 20);
|
|
if (!matches.length) { searchResults.style.display = 'none'; return; }
|
|
searchResults.style.display = 'block';
|
|
matches.forEach(n => {
|
|
const el = document.createElement('div');
|
|
el.className = 'search-item';
|
|
el.textContent = n.label;
|
|
el.style.borderLeft = `3px solid ${n.color.background}`;
|
|
el.style.paddingLeft = '8px';
|
|
el.onclick = () => {
|
|
network.focus(n.id, { scale: 1.5, animation: true });
|
|
network.selectNodes([n.id]);
|
|
showInfo(n.id);
|
|
searchResults.style.display = 'none';
|
|
searchInput.value = '';
|
|
};
|
|
searchResults.appendChild(el);
|
|
});
|
|
});
|
|
document.addEventListener('click', e => {
|
|
if (!searchResults.contains(e.target) && e.target !== searchInput)
|
|
searchResults.style.display = 'none';
|
|
});
|
|
|
|
const hiddenCommunities = new Set();
|
|
|
|
const selectAllCb = document.getElementById('select-all-cb');
|
|
|
|
function updateSelectAllState() {
|
|
const total = LEGEND.length;
|
|
const hidden = hiddenCommunities.size;
|
|
selectAllCb.checked = hidden === 0;
|
|
selectAllCb.indeterminate = hidden > 0 && hidden < total;
|
|
}
|
|
|
|
function toggleAllCommunities(hide) {
|
|
document.querySelectorAll('.legend-item').forEach(item => {
|
|
hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
|
|
});
|
|
document.querySelectorAll('.legend-cb').forEach(cb => {
|
|
cb.checked = !hide;
|
|
});
|
|
LEGEND.forEach(c => {
|
|
if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
|
|
});
|
|
const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
}
|
|
|
|
const legendEl = document.getElementById('legend');
|
|
LEGEND.forEach(c => {
|
|
const item = document.createElement('div');
|
|
item.className = 'legend-item';
|
|
const cb = document.createElement('input');
|
|
cb.type = 'checkbox';
|
|
cb.className = 'legend-cb';
|
|
cb.checked = true;
|
|
cb.addEventListener('change', (e) => {
|
|
e.stopPropagation();
|
|
if (cb.checked) {
|
|
hiddenCommunities.delete(c.cid);
|
|
item.classList.remove('dimmed');
|
|
} else {
|
|
hiddenCommunities.add(c.cid);
|
|
item.classList.add('dimmed');
|
|
}
|
|
const updates = RAW_NODES
|
|
.filter(n => n.community === c.cid)
|
|
.map(n => ({ id: n.id, hidden: !cb.checked }));
|
|
nodesDS.update(updates);
|
|
updateSelectAllState();
|
|
});
|
|
item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
|
|
<span class="legend-label">${c.label}</span>
|
|
<span class="legend-count">${c.count}</span>`;
|
|
item.prepend(cb);
|
|
item.onclick = (e) => {
|
|
if (e.target === cb) return;
|
|
cb.checked = !cb.checked;
|
|
cb.dispatchEvent(new Event('change'));
|
|
};
|
|
legendEl.appendChild(item);
|
|
});
|
|
</script>
|
|
<script>
|
|
// Render hyperedges as shaded regions
|
|
const hyperedges = [];
|
|
// afterDrawing passes ctx already transformed to network coordinate space.
|
|
// Draw node positions raw — no manual pan/zoom/DPR math needed.
|
|
|
|
// Andrew's monotone chain. Returns the hull in counter-clockwise order, which
|
|
// is what the perimeter must be traced in. Collinear and duplicate points
|
|
// collapse to the extremes, so degenerate member sets render as a segment
|
|
// rather than a zero-area crossed path.
|
|
function convexHull(pts) {
|
|
const p = pts.slice().sort((a, b) => (a.x - b.x) || (a.y - b.y));
|
|
if (p.length < 3) return p;
|
|
const cross = (o, a, b) => (a.x - o.x) * (b.y - o.y) - (a.y - o.y) * (b.x - o.x);
|
|
const build = seq => {
|
|
const out = [];
|
|
for (const q of seq) {
|
|
while (out.length >= 2 && cross(out[out.length - 2], out[out.length - 1], q) <= 0) out.pop();
|
|
out.push(q);
|
|
}
|
|
out.pop();
|
|
return out;
|
|
};
|
|
const hull = build(p).concat(build(p.slice().reverse()));
|
|
return hull.length >= 3 ? hull : p;
|
|
}
|
|
network.on('afterDrawing', function(ctx) {
|
|
hyperedges.forEach(h => {
|
|
const positions = h.nodes
|
|
.map(nid => network.getPositions([nid])[nid])
|
|
.filter(p => p !== undefined);
|
|
if (positions.length < 2) return;
|
|
ctx.save();
|
|
ctx.globalAlpha = 0.12;
|
|
ctx.fillStyle = '#6366f1';
|
|
ctx.strokeStyle = '#6366f1';
|
|
ctx.lineWidth = 2;
|
|
ctx.beginPath();
|
|
// Centroid and expanded hull in network coordinates.
|
|
// The perimeter must follow hull order, not h.nodes order: tracing the
|
|
// raw member order self-intersects whenever the layout does not happen
|
|
// to place members in angular order, filling as crossed wedges.
|
|
const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
|
|
const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
|
|
const hull = convexHull(positions);
|
|
const expanded = hull.map(p => ({
|
|
x: cx + (p.x - cx) * 1.15,
|
|
y: cy + (p.y - cy) * 1.15
|
|
}));
|
|
ctx.moveTo(expanded[0].x, expanded[0].y);
|
|
expanded.slice(1).forEach(p => ctx.lineTo(p.x, p.y));
|
|
ctx.closePath();
|
|
ctx.fill();
|
|
ctx.globalAlpha = 0.4;
|
|
ctx.stroke();
|
|
// Label
|
|
ctx.globalAlpha = 0.8;
|
|
ctx.fillStyle = '#4f46e5';
|
|
ctx.font = 'bold 11px sans-serif';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillText(h.label, cx, cy - 5);
|
|
ctx.restore();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |