345 lines
1.9 MiB
345 lines
1.9 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">2200 nodes · 4097 edges · 177 communities</div>
|
|
</div>
|
|
<script>
|
|
const RAW_NODES = [{"id": "backend_src_admin_admin_controller_admincontroller", "label": "AdminController", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 23.2, "font": {"size": 12, "color": "#ffffff"}, "title": "AdminController", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 30}, {"id": "backend_src_admin_admin_service_adminservice", "label": "AdminService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 23.7, "font": {"size": 12, "color": "#ffffff"}, "title": "AdminService", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 31}, {"id": "backend_src_admin_admin_service_couponinput", "label": "CouponInput", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponInput", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_service_productinput", "label": "ProductInput", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductInput", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_dto_admin_query_dto_adminquerydto", "label": "AdminQueryDto", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminQueryDto", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/dto/admin-query.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", "label": "CreateHealthLogDto", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateHealthLogDto", "community": 74, "community_name": "Health Log DTOs", "source_file": "backend/src/pets/dto/create-health-log.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_dto_create_pet_dto_createpetdto", "label": "CreatePetDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "CreatePetDto", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/dto/create-pet.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_pets_dto_create_reminder_dto_createreminderdto", "label": "CreateReminderDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateReminderDto", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "backend/src/pets/dto/create-reminder.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_dto_update_pet_dto_updatepetdto", "label": "UpdatePetDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdatePetDto", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/dto/update-pet.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller_petscontroller", "label": "PetsController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "PetsController", "community": 1, "community_name": "Pet Management Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_pets_pets_module_petsmodule", "label": "PetsModule", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PetsModule", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_healthloginput", "label": "HealthLogInput", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthLogInput", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_service_petsservice", "label": "PetsService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "PetsService", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_pets_pets_service_reminderinput", "label": "ReminderInput", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ReminderInput", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_authmodal_authmodalprops", "label": "AuthModalProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModalProps", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_loginmodal_loginmodalprops", "label": "LoginModalProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginModalProps", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_cartstore_order", "label": "Order", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_uistore_uistate", "label": "UIState", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UIState", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/uiStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_transaction", "label": "Transaction", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Transaction", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_userprofile", "label": "UserProfile", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UserProfile", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_userrole", "label": "UserRole", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UserRole", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_userstore", "label": "UserStore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UserStore", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_navigationtarget", "label": "NavigationTarget", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NavigationTarget", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "backend_prisma_scientificterms_scientificterm", "label": "ScientificTerm", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTerm", "community": 105, "community_name": "Scientific Terms Schema", "source_file": "backend/prisma/scientificTerms.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_addressmodal_addressmodalprops", "label": "AddressModalProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressModalProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_backbutton_backbuttonprops", "label": "BackButtonProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BackButtonProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/BackButton.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", "label": "DeleteConfirmModalProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteConfirmModalProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_headerbutton_headerbuttonprops", "label": "HeaderButtonProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderButtonProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/HeaderButton.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", "label": "OrderDetailsModalProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderDetailsModalProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_searchableselect_searchableselectprops", "label": "SearchableSelectProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchableSelectProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/SearchableSelect.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_topupmodal_topupmodalprops", "label": "TopUpModalProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpModalProps", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_userstore_address", "label": "Address", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Address", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_components_ui_mediaselector_media", "label": "Media", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Media", "community": 13, "community_name": "Media and Blog UI Components", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaSelectorProps", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_blogpost", "label": "BlogPost", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPost", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_categories_category", "label": "Category", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_products_category", "label": "Category", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Category", "community": 13, "community_name": "Media and Blog UI Components", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Product", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_banner", "label": "Banner", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Banner", "community": 31, "community_name": "Admin Settings Managers", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Ingredient", "community": 13, "community_name": "Media and Blog UI Components", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Prescription", "community": 13, "community_name": "Media and Blog UI Components", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Testimonial", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_dto_get_products_dto_getproductsdto", "label": "GetProductsDto", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GetProductsDto", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/dto/get-products.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_products_products_controller_productscontroller", "label": "ProductsController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "ProductsController", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_products_products_module_productsmodule", "label": "ProductsModule", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductsModule", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_products_products_service_productsservice", "label": "ProductsService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "ProductsService", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_blogs_entities_blog_entity_blog", "label": "Blog", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Blog", "community": 143, "community_name": "Blog Entity Model", "source_file": "backend/src/blogs/entities/blog.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_home_entities_home_entity_home", "label": "Home", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Home", "community": 144, "community_name": "Home Entity Model", "source_file": "backend/src/home/entities/home.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_entities_wiki_entity_wiki", "label": "Wiki", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Wiki", "community": 145, "community_name": "Wiki Entity Model", "source_file": "backend/src/wiki/entities/wiki.entity.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_contactformclient_contactinfoitem", "label": "ContactInfoItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactInfoItem", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", "label": "PrescriptionUploadModalProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModalProps", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_api_apierrorpayload", "label": "ApiErrorPayload", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErrorPayload", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_apierr", "label": "ApiErr", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErr", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authresponse", "label": "AuthResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponse", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_authservice_authservice", "label": "AuthService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "AuthService", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 14}, {"id": "frontend_application_lib_services_authservice_user", "label": "User", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "User", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_apierr", "label": "ApiErr", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErr", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_order", "label": "Order", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_orderservice_orderitem", "label": "OrderItem", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderItem", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_settingsstore_scientificterm", "label": "ScientificTerm", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTerm", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_settingsstore_settingsstore", "label": "SettingsStore", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsStore", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_vitest_setup_mockintersectionobserver", "label": "MockIntersectionObserver", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MockIntersectionObserver", "community": 154, "community_name": "Vitest Test Setup", "source_file": "frontend/application/vitest.setup.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_homeclient_homeclientprops", "label": "HomeClientProps", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeClientProps", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/HomeClient.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_b2binquiry", "label": "B2BInquiry", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BInquiry", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_banner", "label": "Banner", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Banner", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_types_dosageconfig", "label": "DosageConfig", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DosageConfig", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_homeapiresponse", "label": "HomeApiResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeApiResponse", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_types_navigationhandler", "label": "NavigationHandler", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "NavigationHandler", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_partneraccount", "label": "PartnerAccount", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PartnerAccount", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_prescription", "label": "Prescription", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Prescription", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_types_smartadvisorrule", "label": "SmartAdvisorRule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorRule", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_testimonial", "label": "Testimonial", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Testimonial", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_coupontargetinput", "label": "CouponTargetInput", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponTargetInput", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_paginationquery", "label": "PaginationQuery", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationQuery", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_service_categoryquery", "label": "CategoryQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryQuery", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_prisma_prisma_service_prismaservice", "label": "PrismaService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "PrismaService", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 68}, {"id": "backend_src_redis_redis_service_redisservice", "label": "RedisService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "RedisService", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_users_users_service_useraddressinput", "label": "UserAddressInput", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UserAddressInput", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_service_videoquery", "label": "VideoQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VideoQuery", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller", "label": "B2BController", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "B2BController", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_b2b_b2b_service_b2bservice", "label": "B2BService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "B2BService", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", "label": "B2BWholesaleOrderItem", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BWholesaleOrderItem", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_jwt_auth_guard_jwtauthguard", "label": "JwtAuthGuard", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "JwtAuthGuard", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 26}, {"id": "backend_src_common_guards_roles_guard_requestwithuser", "label": "RequestWithUser", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RequestWithUser", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "RolesGuard", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_prescriptions_prescriptions_controller_userreqpayload", "label": "UserReqPayload", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UserReqPayload", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_settingscontroller", "label": "SettingsController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "SettingsController", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_settings_settings_service_scientifictermdata", "label": "ScientificTermData", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTermData", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_service_settingsservice", "label": "SettingsService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "SettingsService", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_admin_categories_controller_categoriescontroller", "label": "CategoriesController", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "CategoriesController", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_admin_categories_service_categoriesservice", "label": "CategoriesService", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "CategoriesService", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_banners_banners_controller_bannerscontroller", "label": "BannersController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersController", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_banners_banners_service_bannersservice", "label": "BannersService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "BannersService", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_media_controller_mediacontroller", "label": "MediaController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaController", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_admin_media_service_mediaservice", "label": "MediaService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaService", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller", "label": "IngredientsController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsController", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice", "label": "IngredientsService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "IngredientsService", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", "label": "ContactInfoItem", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactInfoItem", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", "label": "ContactSubmission", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmission", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_dashboard_categorydist", "label": "CategoryDist", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryDist", "community": 24, "community_name": "Admin Dashboard Components", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardData", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", "label": "AdminRouteConfig", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminRouteConfig", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_module_adminmodule", "label": "AdminModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminModule", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/admin.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_pets_service_petquery", "label": "PetQuery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PetQuery", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_service_petsservice", "label": "PetsService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "PetsService", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_wiki_service_wikiquery", "label": "WikiQuery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiQuery", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice", "label": "WikiService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiService", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_redis_redis_module_redismodule", "label": "RedisModule", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "RedisModule", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/redis/redis.module.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_services_sms_service_melipayamakresponse", "label": "MeliPayamakResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MeliPayamakResponse", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_sendpatternsmsoptions", "label": "SendPatternSmsOptions", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SendPatternSmsOptions", "community": 18, "community_name": "Core Services and Auth Logic", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "SmsService", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_common_sms_module_smsmodule", "label": "SmsModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "SmsModule", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/common/sms.module.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_contact_contact_module_contactmodule", "label": "ContactModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactModule", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_createcontactsubmissiondto", "label": "CreateContactSubmissionDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateContactSubmissionDto", "community": 18, "community_name": "Core Services and Auth Logic", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateContactInfoItemDto", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "label": "PrescriptionsController", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsController", "community": 27, "community_name": "Prescription Review Controller", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", "label": "PrescriptionsService", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsService", "community": 27, "community_name": "Prescription Review Controller", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", "label": "SmartAdvisorController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorController", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", "label": "SmartAdvisorService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorService", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller", "label": "TestimonialsController", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsController", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice", "label": "TestimonialsService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsService", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_auth_jwt_strategy_jwtstrategy", "label": "JwtStrategy", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "JwtStrategy", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_users_dto_address_dto_addressdto", "label": "AddressDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressDto", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/dto/address.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_dto_update_profile_dto_updateprofiledto", "label": "UpdateProfileDto", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateProfileDto", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/dto/update-profile.dto.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_userscontroller", "label": "UsersController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "UsersController", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_users_users_service_usersservice", "label": "UsersService", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "UsersService", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 18}, {"id": "frontend_admin_panel_src_components_sidebar_sidebarprops", "label": "SidebarProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SidebarProps", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_topbar_topbarprops", "label": "TopbarProps", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TopbarProps", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_services_api_apierrorpayload", "label": "ApiErrorPayload", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErrorPayload", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_adminuser", "label": "AdminUser", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminUser", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_apiresponse", "label": "ApiResponse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiResponse", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 12}, {"id": "frontend_admin_panel_src_types_admin_authresponsedata", "label": "AuthResponseData", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthResponseData", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_src_types_admin_adminloginpayload", "label": "AdminLoginPayload", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLoginPayload", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_authstate", "label": "AuthState", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthState", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BInquiry", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettings", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PartnerAccount", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Product", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SendOtpPayload", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_types_admin_seosettings", "label": "SeoSettings", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettings", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorRule", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettings", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin_verifyotppayload", "label": "VerifyOtpPayload", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyOtpPayload", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_smartadvisor_smartadvisorprops", "label": "SmartAdvisorProps", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorProps", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_usepetstore_healthlog", "label": "HealthLog", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "HealthLog", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_usepetstore_petconsumption", "label": "PetConsumption", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PetConsumption", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_usepetstore_petprofile", "label": "PetProfile", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PetProfile", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_usepetstore_petstore", "label": "PetStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PetStore", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_usepetstore_reminder", "label": "Reminder", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Reminder", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_module_authmodule", "label": "AuthModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/auth/auth.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_auth_service_adminlogininput", "label": "AdminLoginInput", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLoginInput", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_authservice", "label": "AuthService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "AuthService", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_auth_auth_service_logininput", "label": "LoginInput", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginInput", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_registerinput", "label": "RegisterInput", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterInput", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_strategy_jwtpayload", "label": "JwtPayload", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "JwtPayload", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_module_usersmodule", "label": "UsersModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UsersModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/users/users.module.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", "label": "CustomHttpExceptionFilter", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomHttpExceptionFilter", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", "label": "PrismaExceptionFilter", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PrismaExceptionFilter", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", "label": "DecimalInterceptor", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "DecimalInterceptor", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_common_schemas_error_response_schema_apierrorresponse", "label": "ApiErrorResponse", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiErrorResponse", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/schemas/error-response.schema.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_error_response_schema_errordetailfield", "label": "ErrorDetailField", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorDetailField", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/schemas/error-response.schema.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_controller_contactcontroller", "label": "ContactController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactController", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_contact_contact_service_contactservice", "label": "ContactService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ContactService", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", "label": "ConfirmModalProps", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ConfirmModalProps", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_cms_herobanner", "label": "HeroBanner", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "HeroBanner", "community": 38, "community_name": "CMS and Media Modals", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VetTestimonial", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_videos_video", "label": "Video", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Video", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", "label": "WholesaleRequest", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleRequest", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wiki_productitem", "label": "ProductItem", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductItem", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wiki_wikiterm", "label": "WikiTerm", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiTerm", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_cmscontroller", "label": "CmsController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "CmsController", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 20}, {"id": "backend_src_cms_cms_service_cmsservice", "label": "CmsService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "CmsService", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_cms_dto_cms_dto_createherobannerdto", "label": "CreateHeroBannerDto", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "CreateHeroBannerDto", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "CreateSmartAdvisorRuleDto", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_cms_dto_cms_dto_createvettestimonialdto", "label": "CreateVetTestimonialDto", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "CreateVetTestimonialDto", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_admin_blogs_controller_blogscontroller", "label": "BlogsController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "BlogsController", "community": 41, "community_name": "Admin Blog Controller", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller", "label": "WholesaleController", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleController", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_admin_wiki_controller_wikicontroller", "label": "WikiController", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "WikiController", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_seo_seo_controller_seocontroller", "label": "SeoController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoController", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_seo_seo_module_seomodule", "label": "SeoModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoModule", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_seo_seo_service_seoservice", "label": "SeoService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoService", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_components_ui_pagination_paginationprops", "label": "PaginationProps", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationProps", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_coupon", "label": "Coupon", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Coupon", "community": 46, "community_name": "Coupon Management UI", "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponFormData", "community": 46, "community_name": "Coupon Management UI", "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponModalProps", "community": 46, "community_name": "Coupon Management UI", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_coupons_coupontarget", "label": "CouponTarget", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponTarget", "community": 46, "community_name": "Coupon Management UI", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_media_media", "label": "Media", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Media", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_pets_pet", "label": "Pet", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Pet", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Pets.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_homecontroller", "label": "HomeController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeController", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_home_home_module_homemodule", "label": "HomeModule", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeModule", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_home_home_service_homeservice", "label": "HomeService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeService", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_orders_dto_create_order_dto_createorderdto", "label": "CreateOrderDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "CreateOrderDto", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/dto/create-order.dto.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_orders_dto_create_order_dto_orderitemdto", "label": "OrderItemDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderItemDto", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/dto/create-order.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_orders_orders_controller_orderscontroller", "label": "OrdersController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "OrdersController", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_orders_orders_controller_validatecoupondto", "label": "ValidateCouponDto", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateCouponDto", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_module_ordersmodule", "label": "OrdersModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrdersModule", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice", "label": "OrdersService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "OrdersService", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 15}, {"id": "frontend_admin_panel_src_pages_orders_order", "label": "Order", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Order", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_orders_orderitem", "label": "OrderItem", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderItem", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_users_userrecord", "label": "UserRecord", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserRecord", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Users.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_petsummary", "label": "PetSummary", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PetSummary", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_types_admin_useraddress", "label": "UserAddress", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserAddress", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_skeleton_skeletonprops", "label": "SkeletonProps", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SkeletonProps", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage_calculatorstate", "label": "CalculatorState", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CalculatorState", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tooltip_tooltipprops", "label": "TooltipProps", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TooltipProps", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/Tooltip.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_scientificterms_scientificterm", "label": "ScientificTerm", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ScientificTerm", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/lib/data/scientificTerms.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_safeimage_safeimageprops", "label": "SafeImageProps", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SafeImageProps", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/SafeImage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_vetgallery_displayvideoitem", "label": "DisplayVideoItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DisplayVideoItem", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_vetgallery_testimonialitem", "label": "TestimonialItem", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialItem", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_videoservice_video", "label": "Video", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Video", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_pets_controller_petscontroller", "label": "PetsController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "PetsController", "community": 58, "community_name": "Pet Management API", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_admin_reports_controller_reportscontroller", "label": "ReportsController", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ReportsController", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_reports_service_reportsservice", "label": "ReportsService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ReportsService", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_auth_controller_authcontroller", "label": "AuthController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "AuthController", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_auth_dto_admin_login_dto_adminlogindto", "label": "AdminLoginDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AdminLoginDto", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/admin-login.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_dto_login_dto_logindto", "label": "LoginDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginDto", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/login.dto.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_auth_dto_register_dto_registerdto", "label": "RegisterDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RegisterDto", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/register.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_auth_dto_send_otp_dto_sendotpdto", "label": "SendOtpDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SendOtpDto", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/send-otp.dto.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", "label": "VerifyOtpDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VerifyOtpDto", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_wiki_wiki_controller_wikicontroller", "label": "WikiController", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiController", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wiki_wiki_module_wikimodule", "label": "WikiModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiModule", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wiki_wiki_service_wikiservice", "label": "WikiService", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiService", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_blogs_blogs_module_blogsmodule", "label": "BlogsModule", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsModule", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/blogs/blogs.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_blogs_blogs_service_blogsservice", "label": "BlogsService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsService", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_common_dto_pagination_dto_sortorder", "label": "SortOrder", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SortOrder", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_blogscontroller", "label": "BlogsController", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsController", "community": 63, "community_name": "Public Blog Controller", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", "label": "WholesaleApplyDto", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplyDto", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice", "label": "WholesaleService", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleService", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_common_metrics_controller_metricscontroller", "label": "MetricsController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "MetricsController", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_app_controller_appcontroller", "label": "AppController", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "AppController", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_app_service_appservice", "label": "AppService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AppService", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_common_dto_pagination_dto_paginationdto", "label": "PaginationDto", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 27.2, "font": {"size": 12, "color": "#ffffff"}, "title": "PaginationDto", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 39}, {"id": "backend_src_app_module_appmodule", "label": "AppModule", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AppModule", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_b2b_b2b_module_b2bmodule", "label": "B2BModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/b2b/b2b.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_banners_banners_module_bannersmodule", "label": "BannersModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/banners/banners.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_module_cmsmodule", "label": "CmsModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "CmsModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/cms/cms.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_module_ingredientsmodule", "label": "IngredientsModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/ingredients/ingredients.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", "label": "PrescriptionsModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/prescriptions/prescriptions.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_prisma_prisma_module_prismamodule", "label": "PrismaModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "PrismaModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/prisma/prisma.module.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_settings_settings_module_settingsmodule", "label": "SettingsModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SettingsModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/settings/settings.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", "label": "SmartAdvisorModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_testimonials_testimonials_module_testimonialsmodule", "label": "TestimonialsModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/testimonials/testimonials.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_module_videosmodule", "label": "VideosModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/videos/videos.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wholesale_wholesale_module_wholesalemodule", "label": "WholesaleModule", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleModule", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/wholesale/wholesale.module.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_reports_bestselleritem", "label": "BestSellerItem", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BestSellerItem", "community": 71, "community_name": "Analytics and Report Charts", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CategoryDistItem", "community": 71, "community_name": "Analytics and Report Charts", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTooltipProps", "community": 71, "community_name": "Analytics and Report Charts", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ReportData", "community": 71, "community_name": "Analytics and Report Charts", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TopCouponItem", "community": 71, "community_name": "Analytics and Report Charts", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogquery", "label": "BlogQuery", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogQuery", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice", "label": "BlogsService", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogsService", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_errorboundary_errorboundary", "label": "ErrorBoundary", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_errorboundary_props", "label": "Props", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Props", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_state", "label": "State", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "State", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_createvideodto", "label": "CreateVideoDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "CreateVideoDto", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/dto/create-video.dto.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_videos_dto_create_video_dto_updatevideodto", "label": "UpdateVideoDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateVideoDto", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/dto/create-video.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", "label": "GetVideosQueryDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GetVideosQueryDto", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_videos_videos_controller_videoscontroller", "label": "VideosController", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosController", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_videos_videos_service_videosservice", "label": "VideosService", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "VideosService", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 11}, {"id": "frontend_application_lib_services_orderservice_orderservice", "label": "OrderService", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderService", "community": 82, "community_name": "Order Business Logic", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", "label": "PaginatedResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginatedResponse", "community": 86, "community_name": "Pagination API Schemas", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_schemas_paginated_response_schema_paginationmeta", "label": "PaginationMeta", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PaginationMeta", "community": 86, "community_name": "Pagination API Schemas", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_blogpage_blogpost", "label": "BlogPost", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPost", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_dosageresult", "label": "DosageResult", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DosageResult", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_faq", "label": "FAQ", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "FAQ", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_ingredientinfo", "label": "IngredientInfo", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientInfo", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_data_products_pettype", "label": "PetType", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PetType", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_data_products_product", "label": "Product", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 18.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Product", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 20}, {"id": "frontend_application_lib_data_products_specialist", "label": "Specialist", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Specialist", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_backendproduct", "label": "BackendProduct", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BackendProduct", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice", "label": "ProductService", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ProductService", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 26}, {"id": "frontend_application_lib_store_cartstore_cartitem", "label": "CartItem", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CartItem", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_store_cartstore_cartstore", "label": "CartStore", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CartStore", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_lib_types_ingredient", "label": "Ingredient", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Ingredient", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_dto_create_blog_dto_createblogdto", "label": "CreateBlogDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateBlogDto", "community": 96, "community_name": "Blog Management DTOs", "source_file": "backend/src/blogs/dto/create-blog.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_dto_update_blog_dto_updateblogdto", "label": "UpdateBlogDto", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateBlogDto", "community": 96, "community_name": "Blog Management DTOs", "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_home_dto_create_home_dto_createhomedto", "label": "CreateHomeDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateHomeDto", "community": 97, "community_name": "Home Management DTOs", "source_file": "backend/src/home/dto/create-home.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_home_dto_update_home_dto_updatehomedto", "label": "UpdateHomeDto", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateHomeDto", "community": 97, "community_name": "Home Management DTOs", "source_file": "backend/src/home/dto/update-home.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_dto_create_wiki_dto_createwikidto", "label": "CreateWikiDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CreateWikiDto", "community": 98, "community_name": "Wiki Management DTOs", "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", "label": "UpdateWikiDto", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UpdateWikiDto", "community": 98, "community_name": "Wiki Management DTOs", "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "label": ".adjustWallet()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".adjustWallet()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_controller_admincontroller_createcoupon", "label": ".createCoupon()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCoupon()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_createdoctor", "label": ".createDoctor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createDoctor()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_createproduct", "label": ".createProduct()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createProduct()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCoupon()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "label": ".deleteDoctor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteDoctor()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "label": ".deleteProduct()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteProduct()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_getcoupons", "label": ".getCoupons()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCoupons()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", "label": ".getDashboardStats()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDashboardStats()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_getdoctors", "label": ".getDoctors()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDoctors()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_getorders", "label": ".getOrders()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrders()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_getproducts", "label": ".getProducts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProducts()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_getsettings", "label": ".getSettings()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSettings()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "label": ".getUserDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserDetails()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_admin_controller_admincontroller_getusers", "label": ".getUsers()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUsers()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleCoupon()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCoupon()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "label": ".updateDoctor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDoctor()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "label": ".updateOrderStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateOrderStatus()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProduct()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_admincontroller_updatesettings", "label": ".updateSettings()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSettings()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUserRole()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "label": ".adjustUserWallet()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".adjustUserWallet()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCoupon()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".createDoctor()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".createProduct()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCoupon()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteDoctor()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_deleteproduct", "label": ".deleteProduct()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteProduct()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getcoupons", "label": ".getCoupons()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCoupons()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getdashboardstats", "label": ".getDashboardStats()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDashboardStats()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_getdoctors", "label": ".getDoctors()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDoctors()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getorders", "label": ".getOrders()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrders()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPets()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_adminservice_getproducts", "label": ".getProducts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProducts()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSettings()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_getuserdetails", "label": ".getUserDetails()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserDetails()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_getusers", "label": ".getUsers()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUsers()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleCoupon()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCoupon()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDoctor()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateOrderStatus()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_service_adminservice_updateproduct", "label": ".updateProduct()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProduct()", "community": 0, "community_name": "Admin Management Service", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSettings()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_updateuserrole", "label": ".updateUserRole()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUserRole()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_redis_redis_service_redisservice_get", "label": ".get()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".get()", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", "label": ".addHealthLog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".addHealthLog()", "community": 1, "community_name": "Pet Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".addReminder()", "community": 1, "community_name": "Pet Management Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_controller_petscontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 1, "community_name": "Pet Management Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_controller_petscontroller_create", "label": ".create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 1, "community_name": "Pet Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 1, "community_name": "Pet Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 1, "community_name": "Pet Management Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_pets_pets_controller_petscontroller_remove", "label": ".remove()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 1, "community_name": "Pet Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleReminder()", "community": 1, "community_name": "Pet Management Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_controller_petscontroller_update", "label": ".update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 1, "community_name": "Pet Management Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_pets_pets_service_petsservice_addhealthlog", "label": ".addHealthLog()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".addHealthLog()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_petsservice_addreminder", "label": ".addReminder()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".addReminder()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_petsservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 68, "community_name": "Pet Business Logic", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_service_petsservice_findallbyuser", "label": ".findAllByUser()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllByUser()", "community": 62, "community_name": "Blog Module and Service", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_service_petsservice_remove", "label": ".remove()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_service_petsservice_togglereminder", "label": ".toggleReminder()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".toggleReminder()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_service_petsservice_update", "label": ".update()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 68, "community_name": "Pet Business Logic", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_clientlayout_clientlayout", "label": "ClientLayout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ClientLayout()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_layout_generatemetadata", "label": "generateMetadata()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/layout.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_layout_rootlayout", "label": "RootLayout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "RootLayout()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/layout.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_track_page_trackpage", "label": "TrackPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TrackPage()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/track/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_authmodal_authmodal", "label": "AuthModal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "AuthModal()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_b2bportal_b2bportal", "label": "B2BPortal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BPortal()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/B2BPortal.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_cartdrawer_cartdrawer", "label": "CartDrawer()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "CartDrawer()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/CartDrawer.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_header_header", "label": "Header()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Header()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_header_header_handleclickoutside", "label": "handleClickOutside()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "handleClickOutside()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_loginmodal_loginmodal", "label": "LoginModal()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginModal()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_maintenancepage_maintenancepage", "label": "MaintenancePage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MaintenancePage()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/MaintenancePage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_ordertracking_ordertracking", "label": "OrderTracking()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderTracking()", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/OrderTracking.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_networkbanner_networkbanner", "label": "NetworkBanner()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "NetworkBanner()", "community": 100, "community_name": "Network Status Banner", "source_file": "frontend/application/components/NetworkBanner.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "label": "useNetworkStatus()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "useNetworkStatus()", "community": 100, "community_name": "Network Status Banner", "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_blogs_main", "label": "main()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 106, "community_name": "Blog Data Seeding", "source_file": "backend/prisma/seed-blogs.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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 107, "community_name": "Custom Data Seeding", "source_file": "backend/prisma/seed-custom.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_checkout_page_checkout", "label": "Checkout()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Checkout()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/app/checkout/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_dashboard_page_dashboardpage", "label": "DashboardPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DashboardPage()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/app/dashboard/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_addressmodal_addressmodal", "label": "AddressModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "AddressModal()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_archivepage_archiveproductcard", "label": "ArchiveProductCard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchiveProductCard()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_backbutton_backbutton", "label": "BackButton()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "BackButton()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/BackButton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_checkoutpage_checkoutpage", "label": "CheckoutPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "CheckoutPage()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/CheckoutPage.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", "label": "DeleteConfirmModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteConfirmModal()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_headerbutton_headerbutton", "label": "HeaderButton()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderButton()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/HeaderButton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_hero_statcounter", "label": "StatCounter()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "StatCounter()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/Hero.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "label": "OrderDetailsModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderDetailsModal()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_searchableselect_searchableselect", "label": "SearchableSelect()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchableSelect()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/SearchableSelect.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_topupmodal_topupmodal", "label": "TopUpModal()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpModal()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_userdashboard_userdashboard", "label": "UserDashboard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UserDashboard()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/UserDashboard.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_lib_utils_cn", "label": "cn()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "cn()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 23}, {"id": "frontend_application_lib_utils_toenglishdigits", "label": "toEnglishDigits()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "toEnglishDigits()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_utils_topersian", "label": "toPersian()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 22.8, "font": {"size": 12, "color": "#ffffff"}, "title": "toPersian()", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 29}, {"id": "frontend_application_app_about_page_aboutpage", "label": "AboutPage()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "AboutPage()", "community": 123, "community_name": "About Page Component", "source_file": "frontend/application/app/about/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_privacy_page_privacypage", "label": "PrivacyPage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrivacyPage()", "community": 124, "community_name": "Privacy Page Component", "source_file": "frontend/application/app/privacy/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", "label": "MediaSelector()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaSelector()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_components_ui_spinner_spinner", "label": "Spinner()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Spinner()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", "file_type": "code", "degree": 23}, {"id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", "label": "BannersManager()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersManager()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_blogs_blogs", "label": "Blogs()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Blogs()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_categories_categories", "label": "Categories()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Categories()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", "label": "FinancialSettingsPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettingsPage()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", "label": "IngredientsManager()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsManager()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", "label": "PrescriptionsManager()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsManager()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_products_products", "label": "Products()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Products()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", "label": "TestimonialsManager()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsManager()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_productscontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_products_products_controller_productscontroller_findone", "label": ".findOne()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_products_products_controller_productscontroller_getactivefilters", "label": ".getActiveFilters()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getActiveFilters()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDosageConfig()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_products_products_controller_productscontroller_getnavigationfilters", "label": ".getNavigationFilters()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNavigationFilters()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_products_products_controller_productscontroller_updatedosageconfig", "label": ".updateDosageConfig()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDosageConfig()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_products_products_service_productsservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_products_products_service_productsservice_findall", "label": ".findAll()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getActiveFilters()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDosageConfig()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNavigationFilters()", "community": 14, "community_name": "Product Query DTOs", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateDosageConfig()", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_contact_page_contactpage", "label": "ContactPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactPage()", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/app/contact/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_contactformclient_contactformclient", "label": "ContactFormClient()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactFormClient()", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", "label": "fetchContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchContactInfo()", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", "label": "PrescriptionUploadModal()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModal()", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_authservice_authservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInstance()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProfile()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".logout()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProfile()", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyOtp()", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_robots_robots", "label": "robots()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "robots()", "community": 151, "community_name": "Search Engine Robots Config", "source_file": "frontend/application/app/robots.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_homeclient_homeclient", "label": "HomeClient()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "HomeClient()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/HomeClient.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_page_gethomedata", "label": "getHomeData()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getHomeData()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_page_home", "label": "Home()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Home()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_trust_seals_page_trustsealspage", "label": "TrustSealsPage()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TrustSealsPage()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/trust-seals/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_enamadbadge_enamadbadge", "label": "EnamadBadge()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "EnamadBadge()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/EnamadBadge.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_footer_footer", "label": "Footer()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/Footer.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_hero_hero", "label": "Hero()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/Hero.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_smartadvisor_smartadvisor", "label": "SmartAdvisor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisor()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_tickerbanner_tickerbanner", "label": "TickerBanner()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "TickerBanner()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/TickerBanner.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_vetgallery_vetgallery", "label": "VetGallery()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "VetGallery()", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_service_adminservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_module_appmodule_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/app.module.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.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleDestroy()", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/prisma/prisma.service.ts", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/prisma/prisma.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.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleDestroy()", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/redis/redis.service.ts", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".onModuleInit()", "community": 33, "community_name": "Redis and Admin Services", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".set()", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInquiry()", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", "label": ".createWholesaleOrder()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".createWholesaleOrder()", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", "label": ".findAllInquiries()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllInquiries()", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", "label": ".getAllPartnerAccounts()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllPartnerAccounts()", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", "label": ".getPartnerProfile()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPartnerProfile()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateInquiryStatus()", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_b2b_b2b_service_b2bservice_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".createInquiry()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".createWholesaleOrder()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllInquiries()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllPartnerAccounts()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPartnerProfile()", "community": 19, "community_name": "B2B Inquiry Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateInquiryStatus()", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", "label": ".handleRequest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleRequest()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_decorators_roles_decorator_roles", "label": "Roles()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 29.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Roles()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/decorators/roles.decorator.ts", "file_type": "code", "degree": 45}, {"id": "backend_src_common_guards_roles_guard_rolesguard_canactivate", "label": ".canActivate()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".canActivate()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_guards_roles_guard_rolesguard_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_settingscontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "label": ".deleteScientificTerm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteScientificTerm()", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFinancialSettings()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "label": ".getScientificTerms()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getScientificTerms()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "label": ".getSeoSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSeoSettings()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "label": ".getSystemSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSystemSettings()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "label": ".getUiTexts()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUiTexts()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "label": ".updateFinancialSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateFinancialSettings()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "label": ".updateSeoSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSeoSettings()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "label": ".updateSystemSettings()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSystemSettings()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_settingscontroller_updateuitext", "label": ".updateUiText()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUiText()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "label": ".upsertScientificTerm()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".upsertScientificTerm()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_settings_settings_service_settingsservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteScientificTerm()", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategorySetting()", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getScientificTerms()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_getuitexts", "label": ".getUiTexts()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUiTexts()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "label": ".updateCategorySetting()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCategorySetting()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_service_settingsservice_updateuitext", "label": ".updateUiText()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateUiText()", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".upsertScientificTerm()", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_categoriescontroller_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_categoriescontroller_createcategory", "label": ".createCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCategory()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", "label": ".deleteCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCategory()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", "label": ".getAllCategoriesRaw()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllCategoriesRaw()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_categories_controller_categoriescontroller_getcategories", "label": ".getCategories()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategories()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", "label": ".updateCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCategory()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_categories_service_categoriesservice_constructor", "label": ".constructor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 20, "community_name": "Category Management Controller", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".createCategory()", "community": 20, "community_name": "Category Management Controller", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteCategory()", "community": 20, "community_name": "Category Management Controller", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllCategoriesRaw()", "community": 20, "community_name": "Category Management Controller", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getCategories()", "community": 20, "community_name": "Category Management Controller", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateCategory()", "community": 20, "community_name": "Category Management Controller", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_controller_bannerscontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_controller_bannerscontroller_create", "label": ".create()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_banners_banners_controller_bannerscontroller_findall", "label": ".findAll()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_banners_banners_controller_bannerscontroller_remove", "label": ".remove()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 21, "community_name": "Banner Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 21, "community_name": "Banner Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_banners_banners_service_bannersservice_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 21, "community_name": "Banner Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 21, "community_name": "Banner Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_service_bannersservice_remove", "label": ".remove()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 21, "community_name": "Banner Management Controller", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".reorder()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_banners_banners_service_bannersservice_update", "label": ".update()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 21, "community_name": "Banner Management Controller", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_media_controller_mediacontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_controller_mediacontroller_deletemedia", "label": ".deleteMedia()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteMedia()", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_media_controller_mediacontroller_getallmedia", "label": ".getAllMedia()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllMedia()", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_media_controller_mediacontroller_updatemedia", "label": ".updateMedia()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateMedia()", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_media_controller_mediacontroller_uploadfile", "label": ".uploadFile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".uploadFile()", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_media_service_mediaservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 22, "community_name": "Media Upload Controller", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteMedia()", "community": 22, "community_name": "Media Upload Controller", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllMedia()", "community": 22, "community_name": "Media Upload Controller", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateMedia()", "community": 22, "community_name": "Media Upload Controller", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".uploadFile()", "community": 22, "community_name": "Media Upload Controller", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", "label": ".create()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", "label": ".findAll()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", "label": ".remove()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 23, "community_name": "Ingredient Management Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_app_app", "label": "App()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "App()", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/App.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_app_suspensefallback", "label": "SuspenseFallback()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SuspenseFallback()", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/App.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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmissions()", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_dashboard_dashboard", "label": "Dashboard()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard()", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_settings_settings", "label": "Settings()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings()", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/Settings.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_uitexts", "label": "UITexts()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UITexts()", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_service_petsservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_service_petsservice_deletepet", "label": ".deletePet()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deletePet()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_service_petsservice_getpets", "label": ".getPets()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPets()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_service_wikiservice_createterm", "label": ".createTerm()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".createTerm()", "community": 25, "community_name": "Admin Blog Service", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteTerm()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_service_wikiservice_getterms", "label": ".getTerms()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTerms()", "community": 25, "community_name": "Admin Blog Service", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateTerm()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", "label": ".sendB2bNotification()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendB2bNotification()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "label": ".sendOrderConfirmation()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOrderConfirmation()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_service_smsservice_sendotp", "label": ".sendOtp()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "label": ".sendPatternSms()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendPatternSms()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", "label": ".sendPetCareReminder()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendPetCareReminder()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", "label": ".sendShippingNotification()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendShippingNotification()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_service_ordersservice_updatestatus", "label": ".updateStatus()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateStatus()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".review()", "community": 27, "community_name": "Prescription Review Controller", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", "label": ".constructor()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 27, "community_name": "Prescription Review Controller", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", "label": ".create()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 27, "community_name": "Prescription Review Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".review()", "community": 27, "community_name": "Prescription Review Controller", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", "label": ".create()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", "label": ".findAll()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", "label": ".remove()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 28, "community_name": "Smart Advisor Controller", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 28, "community_name": "Smart Advisor Controller", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 28, "community_name": "Smart Advisor Controller", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 28, "community_name": "Smart Advisor Controller", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 28, "community_name": "Smart Advisor Controller", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", "label": ".create()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", "label": ".findAll()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", "label": ".remove()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 29, "community_name": "Testimonials Management Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 29, "community_name": "Testimonials Management Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 29, "community_name": "Testimonials Management Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 29, "community_name": "Testimonials Management Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 29, "community_name": "Testimonials Management Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_jwt_strategy_jwtstrategy_validate", "label": ".validate()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".validate()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_userscontroller_addaddress", "label": ".addAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".addAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_users_users_controller_userscontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_userscontroller_deleteaddress", "label": ".deleteAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_users_users_controller_userscontroller_getprofile", "label": ".getProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProfile()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_userscontroller_setdefaultaddress", "label": ".setDefaultAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".setDefaultAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".topUpWallet()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_users_controller_userscontroller_updateprofile", "label": ".updateProfile()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateProfile()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_users_users_service_usersservice_addaddress", "label": ".addAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".addAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_service_usersservice_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_service_usersservice_deleteaddress", "label": ".deleteAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_service_usersservice_findbyid", "label": ".findById()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findById()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_service_usersservice_findbyphone", "label": ".findByPhone()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findByPhone()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_service_usersservice_setdefaultaddress", "label": ".setDefaultAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".setDefaultAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".topUpWallet()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_users_users_service_usersservice_updateaddress", "label": ".updateAddress()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateAddress()", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_layout_layout", "label": "Layout()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout()", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Layout.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_protectedroute_protectedroute", "label": "ProtectedRoute()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtectedRoute()", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_sidebar_sidebar", "label": "Sidebar()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar()", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_components_topbar_topbar", "label": "Topbar()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Topbar()", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_login_login", "label": "Login()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Login()", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/pages/Login.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_services_api_processqueue", "label": "processQueue()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "processQueue()", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", "label": "B2BManager()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BManager()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", "label": "SeoSettingsPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettingsPage()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", "label": "SmartAdvisorManager()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorManager()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", "label": "SystemSettingsPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettingsPage()", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_checkout_success_id_page_successpage", "label": "SuccessPage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SuccessPage()", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_profile_page_profilepage", "label": "ProfilePage()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProfilePage()", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/app/profile/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_featuredproducts_featuredproducts", "label": "FeaturedProducts()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "FeaturedProducts()", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/FeaturedProducts.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_featuredproducts_productcard", "label": "ProductCard()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductCard()", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/FeaturedProducts.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_ordersuccess_ordersuccess", "label": "OrderSuccess()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderSuccess()", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/OrderSuccess.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_petprofile_petprofile", "label": "PetProfile()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "PetProfile()", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/PetProfile.tsx", "file_type": "code", "degree": 6}, {"id": "backend_src_auth_auth_controller_authcontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_service_authservice_adminlogin", "label": ".adminLogin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminLogin()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.service.ts", "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.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_auth_auth_service_authservice_login", "label": ".login()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_authservice_register", "label": ".register()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service_authservice_sendotp", "label": ".sendOtp()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_auth_auth_service_authservice_verifyotp", "label": ".verifyOtp()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyOtp()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_redis_redis_service_redisservice_del", "label": ".del()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".del()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", "label": ".catch()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".catch()", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", "label": ".deriveErrorCode()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deriveErrorCode()", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", "label": ".translateGenericMessage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".translateGenericMessage()", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", "label": ".catch()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".catch()", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", "label": ".intercept()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".intercept()", "community": 34, "community_name": "Global Exception Filters", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".transform()", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_main_bootstrap", "label": "bootstrap()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bootstrap()", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/main.ts", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", "label": ".getAllSubmissions()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllSubmissions()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", "label": ".getContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getContactInfo()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_controller_contactcontroller_submitcontact", "label": ".submitContact()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".submitContact()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", "label": ".updateContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateContactInfo()", "community": 35, "community_name": "Contact and SMS Modules", "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": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSubmissionStatus()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_contact_contact_service_contactservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 35, "community_name": "Contact and SMS Modules", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getAllSubmissions()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_service_contactservice_getcontactinfo", "label": ".getContactInfo()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getContactInfo()", "community": 35, "community_name": "Contact and SMS Modules", "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": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".submitContactForm()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", "label": ".updateContactInfoItems()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateContactInfoItems()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", "label": ".updateSubmissionStatus()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSubmissionStatus()", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "label": "ConfirmModal()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "ConfirmModal()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_src_pages_cms_cms", "label": "CMS()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CMS()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_videos_fetchvideoslist", "label": "fetchVideosList()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "fetchVideosList()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_videos_videos", "label": "Videos()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", "label": "WholesaleApplications()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplications()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_wiki_wiki", "label": "Wiki()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Wiki()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_cmscontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_controller_cmscontroller_createherobanner", "label": ".createHeroBanner()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createHeroBanner()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", "label": ".createSmartAdvisorRule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createSmartAdvisorRule()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", "label": ".createVetTestimonial()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".createVetTestimonial()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", "label": ".deleteHeroBanner()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteHeroBanner()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", "label": ".deleteSmartAdvisorRule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmartAdvisorRule()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", "label": ".deleteVetTestimonial()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteVetTestimonial()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_controller_cmscontroller_getherobanners", "label": ".getHeroBanners()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHeroBanners()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", "label": ".getSmartAdvisorRules()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmartAdvisorRules()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", "label": ".getVetTestimonials()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getVetTestimonials()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", "label": ".updateHeroBanner()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateHeroBanner()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", "label": ".updateSmartAdvisorRule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSmartAdvisorRule()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", "label": ".updateVetTestimonial()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateVetTestimonial()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_cms_cms_service_cmsservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createHeroBanner()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", "label": ".createSmartAdvisorRule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createSmartAdvisorRule()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_service_cmsservice_createvettestimonial", "label": ".createVetTestimonial()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".createVetTestimonial()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteHeroBanner()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", "label": ".deleteSmartAdvisorRule()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteSmartAdvisorRule()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", "label": ".deleteVetTestimonial()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteVetTestimonial()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHeroBanners()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSmartAdvisorRules()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getVetTestimonials()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_cms_service_cmsservice_updateherobanner", "label": ".updateHeroBanner()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateHeroBanner()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateSmartAdvisorRule()", "community": 4, "community_name": "CMS Content Management", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateVetTestimonial()", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_controller_blogscontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 41, "community_name": "Admin Blog Controller", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_controller_blogscontroller_createblog", "label": ".createBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlog()", "community": 41, "community_name": "Admin Blog Controller", "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.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlog()", "community": 41, "community_name": "Admin Blog Controller", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_blogscontroller_getblogs", "label": ".getBlogs()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogs()", "community": 41, "community_name": "Admin Blog Controller", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_blogs_controller_blogscontroller_updateblog", "label": ".updateBlog()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBlog()", "community": 41, "community_name": "Admin Blog Controller", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", "label": ".applyForWholesale()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".applyForWholesale()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", "label": ".approveWholesaleRequest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".approveWholesaleRequest()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", "label": ".getWholesaleRequests()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".getWholesaleRequests()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", "label": ".rejectWholesaleRequest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".rejectWholesaleRequest()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", "label": ".approveWholesaleRequest()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".approveWholesaleRequest()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", "label": ".getWholesaleRequests()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getWholesaleRequests()", "community": 42, "community_name": "Wholesale Controller", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".rejectWholesaleRequest()", "community": 42, "community_name": "Wholesale Controller", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_wikicontroller_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_wikicontroller_createterm", "label": ".createTerm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".createTerm()", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", "label": ".deleteTerm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteTerm()", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_wiki_controller_wikicontroller_getterms", "label": ".getTerms()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getTerms()", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_wiki_controller_wikicontroller_updateterm", "label": ".updateTerm()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateTerm()", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_seo_seo_controller_seocontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_controller_seocontroller_getproductschema", "label": ".getProductSchema()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductSchema()", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_seo_seo_controller_seocontroller_getsitemap", "label": ".getSitemap()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSitemap()", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_seo_seo_service_seoservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 45, "community_name": "SEO and Sitemap Module", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductSchema()", "community": 45, "community_name": "SEO and Sitemap Module", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getSitemapUrls()", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_pagination_pagination", "label": "Pagination()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Pagination()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_coupons_couponmodal", "label": "CouponModal()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CouponModal()", "community": 46, "community_name": "Coupon Management UI", "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Coupons()", "community": 46, "community_name": "Coupon Management UI", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_media_mediamanager", "label": "MediaManager()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MediaManager()", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_pets_pets", "label": "Pets()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Pets()", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Pets.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_homecontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 48, "community_name": "Home Data Module", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHomeData()", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_home_home_service_homeservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 48, "community_name": "Home Data Module", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHomeData()", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_services_sms_service_smsservice_sendsms", "label": ".sendSms()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendSms()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_orderscontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 5, "community_name": "Order Creation DTOs", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_orders_orders_controller_orderscontroller_findall", "label": ".findAll()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_orders_orders_controller_orderscontroller_findone", "label": ".findOne()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", "label": ".validateCoupon()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".validateCoupon()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", "label": ".checkAndSendRefillReminders()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".checkAndSendRefillReminders()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_service_ordersservice_create", "label": ".create()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_orders_orders_service_ordersservice_findallbyuser", "label": ".findAllByUser()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllByUser()", "community": 5, "community_name": "Order Creation DTOs", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", "label": ".generateTrackingNumber()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".generateTrackingNumber()", "community": 5, "community_name": "Order Creation DTOs", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".validateCoupon()", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_home_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-home.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_products_determinesuitablefor", "label": "determineSuitableFor()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "determineSuitableFor()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_findorcreatecategory", "label": "findOrCreateCategory()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "findOrCreateCategory()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_getproductimageurl", "label": "getProductImageUrl()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getProductImageUrl()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 6}, {"id": "backend_prisma_seed_products_parsesize", "label": "parseSize()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "parseSize()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_products_slugify", "label": "slugify()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "slugify()", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "label": "Skeleton()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton()", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_orders_orders", "label": "Orders()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Orders()", "community": 53, "community_name": "UI Skeleton and Tables", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "toPersianDigits()", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_pages_users_users", "label": "Users()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Users()", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Users.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_loading_globalloading", "label": "GlobalLoading()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GlobalLoading()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/app/loading.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_page_shop", "label": "Shop()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Shop()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/app/shop/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_archivepage_archivepage", "label": "ArchivePage()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ArchivePage()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_skeleton_orderrowskeleton", "label": "OrderRowSkeleton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderRowSkeleton()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_skeleton_petprofileskeleton", "label": "PetProfileSkeleton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PetProfileSkeleton()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_skeleton_productcardskeleton", "label": "ProductCardSkeleton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductCardSkeleton()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_skeleton_skeleton", "label": "Skeleton()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Skeleton()", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_shop_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_shop_slug_page_shopproductpage", "label": "ShopProductPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ShopProductPage()", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage_productpage", "label": "ProductPage()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ProductPage()", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_tooltip_tooltip", "label": "Tooltip()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Tooltip()", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/Tooltip.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_videos_page_videos", "label": "Videos()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos()", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/app/videos/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_safeimage_safeimage", "label": "SafeImage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "SafeImage()", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/SafeImage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_components_videospage_videospage", "label": "VideosPage()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosPage()", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VideosPage.tsx", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_controller_petscontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 58, "community_name": "Pet Management API", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_controller_petscontroller_deletepet", "label": ".deletePet()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".deletePet()", "community": 58, "community_name": "Pet Management API", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_pets_controller_petscontroller_getpets", "label": ".getPets()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".getPets()", "community": 58, "community_name": "Pet Management API", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_reports_controller_reportscontroller_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 59, "community_name": "Reporting Service and Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".getReports()", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_reports_service_reportsservice_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 59, "community_name": "Reporting Service and Controller", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDashboardReports()", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_auth_controller_authcontroller_adminlogin", "label": ".adminLogin()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".adminLogin()", "community": 6, "community_name": "Authentication Controller", "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".login()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_register", "label": ".register()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".register()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_sendotp", "label": ".sendOtp()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".sendOtp()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_auth_auth_controller_authcontroller_verifyotp", "label": ".verifyOtp()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".verifyOtp()", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wiki_wiki_controller_wikicontroller_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_service_wikiservice_constructor", "label": ".constructor()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 61, "community_name": "Wiki Module and Service", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOneByKey()", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service_blogsservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 62, "community_name": "Blog Module and Service", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", "label": ".findOneBySlug()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOneBySlug()", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", "label": ".constructor()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 63, "community_name": "Public Blog Controller", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 63, "community_name": "Public Blog Controller", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_controller_blogscontroller_findone", "label": ".findOne()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 63, "community_name": "Public Blog Controller", "source_file": "backend/src/blogs/blogs.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", "label": ".applyForWholesale()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".applyForWholesale()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", "label": ".constructor()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_module_appmodule_configure", "label": ".configure()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".configure()", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_metrics_controller_metricscontroller_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 65, "community_name": "OpenAPI and Metrics", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getMetrics()", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", "label": ".incrementRequestCount()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".incrementRequestCount()", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_redis_redis_service_redisservice_incr", "label": ".incr()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".incr()", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_app_controller_appcontroller_constructor", "label": ".constructor()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_app_controller_appcontroller_gethello", "label": ".getHello()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHello()", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_service_appservice_gethello", "label": ".getHello()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".getHello()", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_service_petsservice_findalladmin", "label": ".findAllAdmin()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAllAdmin()", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_service_wikiservice_findall", "label": ".findAll()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_scripts_generate_openapi_generateopenapi", "label": "generateOpenApi()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "generateOpenApi()", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/scripts/generate-openapi.ts", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports_customtooltip", "label": "CustomTooltip()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CustomTooltip()", "community": 71, "community_name": "Analytics and Report Charts", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Reports()", "community": 71, "community_name": "Analytics and Report Charts", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "ai_agency_orchestrate_cmd_next_task", "label": "cmd_next_task()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_next_task()", "community": 72, "community_name": "Task Orchestration Scripts", "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": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_progress()", "community": 72, "community_name": "Task Orchestration Scripts", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "ai_agency_orchestrate_cmd_reset", "label": "cmd_reset()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_reset()", "community": 72, "community_name": "Task Orchestration Scripts", "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": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_status()", "community": 72, "community_name": "Task Orchestration Scripts", "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.8, "font": {"size": 0, "color": "#ffffff"}, "title": "cmd_unblock()", "community": 72, "community_name": "Task Orchestration Scripts", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 4}, {"id": "ai_agency_orchestrate_load_json", "label": "load_json()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "load_json()", "community": 72, "community_name": "Task Orchestration Scripts", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 5}, {"id": "ai_agency_orchestrate_main", "label": "main()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 72, "community_name": "Task Orchestration Scripts", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 6}, {"id": "ai_agency_orchestrate_save_json", "label": "save_json()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "save_json()", "community": 72, "community_name": "Task Orchestration Scripts", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_blogs_service_blogsservice_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_service_blogsservice_createblog", "label": ".createBlog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".createBlog()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_deleteblog", "label": ".deleteBlog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".deleteBlog()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_getblogs", "label": ".getBlogs()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getBlogs()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service_blogsservice_updateblog", "label": ".updateBlog()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".updateBlog()", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", "label": ".componentDidCatch()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".componentDidCatch()", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_constructor", "label": ".constructor()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", "label": ".getDerivedStateFromError()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getDerivedStateFromError()", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_handleretry", "label": ".handleRetry()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".handleRetry()", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary_errorboundary_render", "label": ".render()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".render()", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_wikicontroller_findall", "label": ".findAll()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 77, "community_name": "Generic Resource Controller", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 77, "community_name": "Generic Resource Controller", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_error_errorboundary", "label": "ErrorBoundary()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary()", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/app/error.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_not_found_notfound", "label": "NotFound()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFound()", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/app/not-found.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorpages_notfoundpage", "label": "NotFoundPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "NotFoundPage()", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/components/ErrorPages.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_errorpages_servererrorpage", "label": "ServerErrorPage()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ServerErrorPage()", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/components/ErrorPages.tsx", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_videoscontroller_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_videoscontroller_create", "label": ".create()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_videos_videos_controller_videoscontroller_findall", "label": ".findAll()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 8, "community_name": "Video Management DTOs", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_videos_videos_controller_videoscontroller_remove", "label": ".remove()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_videos_videos_controller_videoscontroller_update", "label": ".update()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_videos_videos_service_videosservice_constructor", "label": ".constructor()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_service_videosservice_create", "label": ".create()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".create()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_service_videosservice_findall", "label": ".findAll()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ".findAll()", "community": 8, "community_name": "Video Management DTOs", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".findOne()", "community": 8, "community_name": "Video Management DTOs", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".remove()", "community": 8, "community_name": "Video Management DTOs", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".update()", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_services_orderservice_orderservice_constructor", "label": ".constructor()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 82, "community_name": "Order Business Logic", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".createOrder()", "community": 82, "community_name": "Order Business Logic", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInstance()", "community": 82, "community_name": "Order Business Logic", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getOrderById()", "community": 82, "community_name": "Order Business Logic", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getUserOrders()", "community": 82, "community_name": "Order Business Logic", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers_checkandopen", "label": "checkAndOpen()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "checkAndOpen()", "community": 83, "community_name": "Browser Utility Scripts", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 2}, {"id": "scripts_open_browsers_openurl", "label": "openUrl()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "openUrl()", "community": 83, "community_name": "Browser Utility Scripts", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 2}, {"id": "scripts_start_dev_waitforbackend", "label": "waitForBackend()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "waitForBackend()", "community": 84, "community_name": "Dev Server Startup", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 2}, {"id": "scripts_start_dev_waitforbackend_check", "label": "check()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "check()", "community": 84, "community_name": "Dev Server Startup", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", "label": "createPaginatedSchema()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "createPaginatedSchema()", "community": 86, "community_name": "Pagination API Schemas", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_catalog_catalogclient_catalogclient", "label": "CatalogClient()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogClient()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_catalog_page_catalogpage", "label": "CatalogPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogPage()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/catalog/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_search_page_searchpage", "label": "SearchPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchPage()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/search/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap_sitemap", "label": "sitemap()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/sitemap.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_wiki_page_wikipage", "label": "WikiPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiPage()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/wiki/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_ingredientwiki_ingredientwiki", "label": "IngredientWiki()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientWiki()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/components/IngredientWiki.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_searchresultspage_searchresultspage", "label": "SearchResultsPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultsPage()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/components/SearchResultsPage.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_productservice_productservice_constructor", "label": ".constructor()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".constructor()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_getactivefilters", "label": ".getActiveFilters()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getActiveFilters()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "label": ".getFeaturedProducts()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getFeaturedProducts()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_productservice_productservice_getinstance", "label": ".getInstance()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getInstance()", "community": 9, "community_name": "Public Catalog Pages", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".getNavigationFilters()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_productservice_productservice_getproductbyid", "label": ".getProductById()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductById()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "label": ".getProductBySlug()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProductBySlug()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_services_productservice_productservice_getproducts", "label": ".getProducts()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ".getProducts()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "label": ".mapBackendToFrontend()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": ".mapBackendToFrontend()", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_blog_page_blog", "label": "Blog()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Blog()", "community": 90, "community_name": "Blog Listing Page", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_page_getblogs", "label": "getBlogs()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlogs()", "community": 90, "community_name": "Blog Listing Page", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_blogpage_blogpage", "label": "BlogPage()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPage()", "community": 90, "community_name": "Blog Listing Page", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_slug_page_blogpostpage", "label": "BlogPostPage()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPostPage()", "community": 91, "community_name": "Blog Post Detail Page", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_blog_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 91, "community_name": "Blog Post Detail Page", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getBlog()", "community": 91, "community_name": "Blog Post Detail Page", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_ui_texts_main", "label": "main()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 94, "community_name": "UI Text Seeding", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_wiki_main", "label": "main()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 95, "community_name": "Wiki Terms Seeding", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_wiki_slug_page_generatemetadata", "label": "generateMetadata()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generateMetadata()", "community": 99, "community_name": "Wiki Page Routing", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_wiki_slug_page_getwikiterm", "label": "getWikiTerm()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getWikiTerm()", "community": 99, "community_name": "Wiki Page Routing", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_wiki_slug_page_wikitermpage", "label": "WikiTermPage()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "WikiTermPage()", "community": 99, "community_name": "Wiki Page Routing", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_controller", "label": "admin.controller.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.controller.ts", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_admin_controller_spec", "label": "admin.controller.spec.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "admin.controller.spec.ts", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/admin.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiOperation", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 22}, {"id": "backend_src_admin_admin_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_body", "label": "Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Body", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_admin_controller_ts_controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_controller_ts_delete", "label": "Delete", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_admin_controller_ts_get", "label": "Get", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_admin_controller_ts_param", "label": "Param", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Param", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 11}, {"id": "backend_src_admin_admin_controller_ts_post", "label": "Post", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_ts_put", "label": "Put", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_admin_admin_controller_ts_query", "label": "Query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_admin_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_admin_service_ts_injectable", "label": "Injectable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_admin_query_dto", "label": "admin-query.dto.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-query.dto.ts", "community": 0, "community_name": "Admin Management Service", "source_file": "backend/src/admin/dto/admin-query.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_admin_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_dto_admin_query_dto_ts_isstring", "label": "IsString", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 0, "community_name": "Admin Management Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto", "label": "create-health-log.dto.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "create-health-log.dto.ts", "community": 74, "community_name": "Health Log DTOs", "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_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 74, "community_name": "Health Log DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 74, "community_name": "Health Log DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 74, "community_name": "Health Log DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 74, "community_name": "Health Log DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_health_log_dto_ts_isstring", "label": "IsString", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 74, "community_name": "Health Log DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto", "label": "create-pet.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create-pet.dto.ts", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/dto/create-pet.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isarray", "label": "IsArray", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_pet_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto", "label": "create-reminder.dto.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "create-reminder.dto.ts", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "backend/src/pets/dto/create-reminder.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_create_reminder_dto_ts_isstring", "label": "IsString", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 117, "community_name": "Pet Reminder DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_dto_update_pet_dto", "label": "update-pet.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "update-pet.dto.ts", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/dto/update-pet.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller", "label": "pets/pets.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "pets/pets.controller.ts", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.controller.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_pets_pets_controller_spec", "label": "pets.controller.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "pets.controller.spec.ts", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apicreatedresponse", "label": "ApiCreatedResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiCreatedResponse", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_pets_pets_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_pets_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_pets_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_body", "label": "Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_pets_pets_controller_ts_controller", "label": "Controller", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_delete", "label": "Delete", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_get", "label": "Get", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_pets_pets_controller_ts_param", "label": "Param", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_controller_ts_patch", "label": "Patch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_post", "label": "Post", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_pets_pets_controller_ts_query", "label": "Query", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_controller_ts_req", "label": "Req", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_pets_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 1, "community_name": "Pet Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_module", "label": "pets.module.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "pets.module.ts", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_pets_pets_module_ts_module", "label": "Module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_pets_pets_service", "label": "pets/pets.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "pets/pets.service.ts", "community": 26, "community_name": "Pet DTOs and Controller", "source_file": "backend/src/pets/pets.service.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_pets_pets_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 68, "community_name": "Pet Business Logic", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_clientlayout", "label": "ClientLayout.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ClientLayout.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/ClientLayout.tsx", "file_type": "code", "degree": 26}, {"id": "frontend_application_app_layout", "label": "layout.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "layout.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/layout.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_track_page", "label": "track/page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "track/page.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/app/track/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_authmodal", "label": "AuthModal.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "AuthModal.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/AuthModal.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_components_b2bportal", "label": "B2BPortal.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "B2BPortal.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/B2BPortal.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_application_components_cartdrawer", "label": "CartDrawer.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "CartDrawer.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/CartDrawer.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_application_components_header", "label": "Header.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Header.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 24}, {"id": "frontend_application_components_header_menu_icons", "label": "MENU_ICONS", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MENU_ICONS", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/Header.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_loginmodal", "label": "LoginModal.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "LoginModal.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/LoginModal.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_application_components_maintenancepage", "label": "MaintenancePage.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "MaintenancePage.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/MaintenancePage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_ordertracking", "label": "OrderTracking.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderTracking.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/OrderTracking.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_tests_cartdrawer_test", "label": "CartDrawer.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "CartDrawer.test.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_tests_cartdrawer_test_mockproduct", "label": "mockProduct", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "mockProduct", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tests_header_test", "label": "Header.test.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Header.test.tsx", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/components/__tests__/Header.test.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_store_cartstore", "label": "cartStore.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.0, "font": {"size": 12, "color": "#ffffff"}, "title": "cartStore.ts", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 25}, {"id": "frontend_application_lib_store_cartstore_usecartstore", "label": "useCartStore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.9, "font": {"size": 12, "color": "#ffffff"}, "title": "useCartStore", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/cartStore.ts", "file_type": "code", "degree": 27}, {"id": "frontend_application_lib_store_tests_cartstore_test", "label": "cartStore.test.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "cartStore.test.ts", "community": 10, "community_name": "Client Layout and Auth Modals", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "mockProduct", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_uistore", "label": "uiStore.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "uiStore.ts", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/uiStore.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_store_uistore_useuistore", "label": "useUIStore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "useUIStore", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/uiStore.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_lib_store_userstore", "label": "userStore.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 21.9, "font": {"size": 12, "color": "#ffffff"}, "title": "userStore.ts", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 27}, {"id": "frontend_application_lib_store_userstore_useuserstore", "label": "useUserStore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "useUserStore", "community": 10, "community_name": "Client Layout and Auth Modals", "source_file": "frontend/application/lib/store/userStore.ts", "file_type": "code", "degree": 24}, {"id": "frontend_application_components_networkbanner", "label": "NetworkBanner.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "NetworkBanner.tsx", "community": 100, "community_name": "Network Status Banner", "source_file": "frontend/application/components/NetworkBanner.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_hooks_usenetworkstatus", "label": "useNetworkStatus.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useNetworkStatus.ts", "community": 100, "community_name": "Network Status Banner", "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", "file_type": "code", "degree": 2}, {"id": "scripts_deploy", "label": "deploy.sh", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy.sh", "community": 101, "community_name": "Docker Deployment Scripts", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 3}, {"id": "scripts_deploy_compose_docker_cli_build", "label": "COMPOSE_DOCKER_CLI_BUILD", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "COMPOSE_DOCKER_CLI_BUILD", "community": 101, "community_name": "Docker Deployment Scripts", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DOCKER_BUILDKIT", "community": 101, "community_name": "Docker Deployment Scripts", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 1}, {"id": "scripts_deploy_sh__entry", "label": "deploy.sh script", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "deploy.sh script", "community": 101, "community_name": "Docker Deployment Scripts", "source_file": "scripts/deploy.sh", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_eslint_js", "label": "@eslint/js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 102, "community_name": "ESLint Core Configuration", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_eslint_js", "label": "@eslint/js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 102, "community_name": "ESLint Core Configuration", "source_file": "frontend/admin-panel/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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/js", "community": 102, "community_name": "ESLint Core Configuration", "source_file": "backend/package.json", "file_type": "concept", "degree": 2}, {"id": "backend_package_devdependencies_typescript_eslint", "label": "typescript-eslint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 103, "community_name": "TypeScript ESLint Support", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_typescript_eslint", "label": "typescript-eslint", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 103, "community_name": "TypeScript ESLint Support", "source_file": "frontend/admin-panel/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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript-eslint", "community": 103, "community_name": "TypeScript ESLint Support", "source_file": "backend/package.json", "file_type": "concept", "degree": 2}, {"id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "community": 104, "community_name": "Database Migration Scripts", "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_scientific_terms", "label": "\"scientific_terms\"", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ""scientific_terms"", "community": 104, "community_name": "Database Migration Scripts", "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_ui_texts", "label": "\"ui_texts\"", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ""ui_texts"", "community": 104, "community_name": "Database Migration Scripts", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma/scientificTerms.ts", "community": 105, "community_name": "Scientific Terms Schema", "source_file": "backend/prisma/scientificTerms.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_scientificterms_scientific_terms", "label": "SCIENTIFIC_TERMS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SCIENTIFIC_TERMS", "community": 105, "community_name": "Scientific Terms Schema", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-blogs.ts", "community": 106, "community_name": "Blog Data Seeding", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 106, "community_name": "Blog Data Seeding", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-custom.ts", "community": 107, "community_name": "Custom Data Seeding", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 107, "community_name": "Custom Data Seeding", "source_file": "backend/prisma/seed-custom.ts", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_prisma", "label": "prisma", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_tsconfig_build", "label": "tsconfig.build.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.build.json", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "code", "degree": 3}, {"id": "backend_tsconfig_build_exclude", "label": "exclude", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "code", "degree": 6}, {"id": "backend_tsconfig_build_extends", "label": "extends", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "extends", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig", "label": "application/tsconfig.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "application/tsconfig.json", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 3}, {"id": "frontend_application_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 16}, {"id": "frontend_application_tsconfig_compileroptions_allowjs", "label": "allowJs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "allowJs", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_incremental", "label": "incremental", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "incremental", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_jsx", "label": "jsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_lib", "label": "lib", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 4}, {"id": "frontend_application_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_noemit", "label": "noEmit", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_paths", "label": "paths", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "paths", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_plugins", "label": "plugins", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "plugins", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", "label": "resolveJsonModule", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "resolveJsonModule", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_strict", "label": "strict", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "strict", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_tsconfig_exclude", "label": "exclude", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 6}, {"id": "frontend_application_tsconfig_include", "label": "include", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "code", "degree": 7}, {"id": "backend_tsconfig_build_json_ref_node_modules", "label": "node_modules", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "node_modules", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 2}, {"id": "frontend_application_tsconfig_json_ref_dom", "label": "dom", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dom", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_tsconfig_json_ref_ts", "label": "**/*.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "prisma", "label": "prisma", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 3}, {"id": "ref_dist", "label": "dist", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dist", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "ref_dom_iterable", "label": "dom.iterable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dom.iterable", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_esnext", "label": "esnext", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "esnext", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_mts", "label": "**/*.mts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.mts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_next_dev_types_ts", "label": ".next/dev/types/**/*.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".next/dev/types/**/*.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_next_env_d_ts", "label": "next-env.d.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "next-env.d.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_next_types_ts", "label": ".next/types/**/*.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": ".next/types/**/*.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_spec_ts", "label": "**/*spec.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*spec.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "ref_test", "label": "test", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "ref_tests", "label": "**/__tests__/**", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**/__tests__/**", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_tsconfig_json", "label": "./tsconfig.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "./tsconfig.json", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "backend/tsconfig.build.json", "file_type": "concept", "degree": 1}, {"id": "ref_tsx", "label": "**/*.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.tsx", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_vitest_config_ts", "label": "vitest.config.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "ref_vitest_setup_ts", "label": "vitest.setup.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.setup.ts", "community": 11, "community_name": "Prisma and TypeScript Config", "source_file": "frontend/application/tsconfig.json", "file_type": "concept", "degree": 1}, {"id": "docs_audit_build_manifest", "label": "build_manifest.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "build_manifest.js", "community": 110, "community_name": "Build Manifest Generation", "source_file": "docs/audit/build_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_build_manifest_entries", "label": "entries", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "entries", "community": 110, "community_name": "Build Manifest Generation", "source_file": "docs/audit/build_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_build_manifest_lines", "label": "lines", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lines", "community": 110, "community_name": "Build Manifest Generation", "source_file": "docs/audit/build_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_classification", "label": "generate_classification.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_classification.js", "community": 111, "community_name": "Classification Data Generation", "source_file": "docs/audit/generate_classification.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_classification_classified", "label": "classified", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "classified", "community": 111, "community_name": "Classification Data Generation", "source_file": "docs/audit/generate_classification.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_classification_lines", "label": "lines", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lines", "community": 111, "community_name": "Classification Data Generation", "source_file": "docs/audit/generate_classification.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_evidence", "label": "generate_evidence.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_evidence.js", "community": 112, "community_name": "Evidence Data Generation", "source_file": "docs/audit/generate_evidence.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_evidence_classification", "label": "classification", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "classification", "community": 112, "community_name": "Evidence Data Generation", "source_file": "docs/audit/generate_evidence.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_evidence_evidenceentries", "label": "evidenceEntries", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "evidenceEntries", "community": 112, "community_name": "Evidence Data Generation", "source_file": "docs/audit/generate_evidence.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_ledger", "label": "generate_ledger.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_ledger.js", "community": 113, "community_name": "Ledger Data Generation", "source_file": "docs/audit/generate_ledger.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_ledger_evidence", "label": "evidence", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "evidence", "community": 113, "community_name": "Ledger Data Generation", "source_file": "docs/audit/generate_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_ledger_ledgerentries", "label": "ledgerEntries", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ledgerEntries", "community": 113, "community_name": "Ledger Data Generation", "source_file": "docs/audit/generate_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_manifest", "label": "generate_manifest.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "generate_manifest.js", "community": 114, "community_name": "Manifest Data Generation", "source_file": "docs/audit/generate_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_generate_manifest_evidence", "label": "evidence", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "evidence", "community": 114, "community_name": "Manifest Data Generation", "source_file": "docs/audit/generate_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_generate_manifest_manifestentries", "label": "manifestEntries", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "manifestEntries", "community": 114, "community_name": "Manifest Data Generation", "source_file": "docs/audit/generate_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_honest_manifest", "label": "sync_honest_manifest.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_honest_manifest.js", "community": 115, "community_name": "Honest Manifest Synchronization", "source_file": "docs/audit/sync_honest_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_sync_honest_manifest_ledger", "label": "ledger", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ledger", "community": 115, "community_name": "Honest Manifest Synchronization", "source_file": "docs/audit/sync_honest_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_honest_manifest_manifest", "label": "manifest", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest", "community": 115, "community_name": "Honest Manifest Synchronization", "source_file": "docs/audit/sync_honest_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_manifest", "label": "sync_manifest.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sync_manifest.js", "community": 116, "community_name": "Manifest Entry Synchronization", "source_file": "docs/audit/sync_manifest.js", "file_type": "code", "degree": 2}, {"id": "docs_audit_sync_manifest_ledger", "label": "ledger", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ledger", "community": 116, "community_name": "Manifest Entry Synchronization", "source_file": "docs/audit/sync_manifest.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_sync_manifest_manifestentries", "label": "manifestEntries", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "manifestEntries", "community": 116, "community_name": "Manifest Entry Synchronization", "source_file": "docs/audit/sync_manifest.js", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_dependencies_lucide_react", "label": "lucide-react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_lucide_react", "label": "lucide-react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_lucide_react", "label": "lucide-react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "lucide-react", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 118, "community_name": "React DOM Library", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_react_dom", "label": "react-dom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 118, "community_name": "React DOM Library", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_react_dom", "label": "react-dom", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react-dom", "community": 118, "community_name": "React DOM Library", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_zustand", "label": "zustand", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 119, "community_name": "Zustand State Management", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_zustand", "label": "zustand", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 119, "community_name": "Zustand State Management", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_zustand", "label": "zustand", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "zustand", "community": 119, "community_name": "Zustand State Management", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_application_app_checkout_page", "label": "checkout/page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "checkout/page.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/app/checkout/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_dashboard_page", "label": "dashboard/page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "dashboard/page.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/app/dashboard/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_addressmodal", "label": "AddressModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "AddressModal.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/AddressModal.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_application_components_backbutton", "label": "BackButton.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "BackButton.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/BackButton.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_checkoutpage", "label": "CheckoutPage.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "CheckoutPage.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/CheckoutPage.tsx", "file_type": "code", "degree": 24}, {"id": "frontend_application_components_deleteconfirmmodal", "label": "DeleteConfirmModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "DeleteConfirmModal.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/DeleteConfirmModal.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_headerbutton", "label": "HeaderButton.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HeaderButton.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/HeaderButton.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_orderdetailsmodal", "label": "OrderDetailsModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderDetailsModal.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/OrderDetailsModal.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_searchableselect", "label": "SearchableSelect.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchableSelect.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/SearchableSelect.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_topupmodal", "label": "TopUpModal.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "TopUpModal.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_topupmodal_preset_amounts", "label": "PRESET_AMOUNTS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PRESET_AMOUNTS", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/TopUpModal.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_userdashboard", "label": "UserDashboard.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "UserDashboard.tsx", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/components/UserDashboard.tsx", "file_type": "code", "degree": 21}, {"id": "frontend_application_lib_data_provinces", "label": "provinces.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "provinces.ts", "community": 12, "community_name": "Checkout and Dashboard Components", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IRAN_PROVINCES", "community": 12, "community_name": "Checkout and Dashboard Components", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "PROVINCE_CITIES", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/lib/data/provinces.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_lib_utils", "label": "utils.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "utils.ts", "community": 12, "community_name": "Checkout and Dashboard Components", "source_file": "frontend/application/lib/utils.ts", "file_type": "code", "degree": 23}, {"id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 120, "community_name": "Tailwind PostCSS Plugin", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 120, "community_name": "Tailwind PostCSS Plugin", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_tailwindcss_postcss", "label": "@tailwindcss/postcss", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@tailwindcss/postcss", "community": 120, "community_name": "Tailwind PostCSS Plugin", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 121, "community_name": "React DOM Type Definitions", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_types_react_dom", "label": "@types/react-dom", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 121, "community_name": "React DOM Type Definitions", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_types_react_dom", "label": "@types/react-dom", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react-dom", "community": 121, "community_name": "React DOM Type Definitions", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_admin_panel_tsconfig", "label": "admin-panel/tsconfig.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/tsconfig.json", "community": 122, "community_name": "Admin Panel TSConfig", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "files", "community": 122, "community_name": "Admin Panel TSConfig", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "references", "community": 122, "community_name": "Admin Panel TSConfig", "source_file": "frontend/admin-panel/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_about_page", "label": "about/page.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "about/page.tsx", "community": 123, "community_name": "About Page Component", "source_file": "frontend/application/app/about/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_about_page_metadata", "label": "metadata", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 123, "community_name": "About Page Component", "source_file": "frontend/application/app/about/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_privacy_page", "label": "privacy/page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "privacy/page.tsx", "community": 124, "community_name": "Privacy Page Component", "source_file": "frontend/application/app/privacy/page.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_privacy_page_metadata", "label": "metadata", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 124, "community_name": "Privacy Page Component", "source_file": "frontend/application/app/privacy/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_next_config", "label": "next.config.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "next.config.ts", "community": 125, "community_name": "Next.js Security Configuration", "source_file": "frontend/application/next.config.ts", "file_type": "code", "degree": 2}, {"id": "frontend_application_next_config_nextconfig", "label": "nextConfig", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "nextConfig", "community": 125, "community_name": "Next.js Security Configuration", "source_file": "frontend/application/next.config.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_next_config_securityheaders", "label": "securityHeaders", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "securityHeaders", "community": 125, "community_name": "Next.js Security Configuration", "source_file": "frontend/application/next.config.ts", "file_type": "code", "degree": 1}, {"id": "backend_package_dependencies_bcryptjs", "label": "bcryptjs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bcryptjs", "community": 127, "community_name": "Bcrypt Password Hashing", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "bcryptjs", "label": "bcryptjs", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bcryptjs", "community": 127, "community_name": "Bcrypt Password Hashing", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_helmet", "label": "helmet", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "helmet", "community": 128, "community_name": "Helmet Security Middleware", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "helmet", "label": "helmet", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "helmet", "community": 128, "community_name": "Helmet Security Middleware", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_js_yaml", "label": "js-yaml", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "js-yaml", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "js_yaml", "label": "js-yaml", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "js-yaml", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_mediaselector", "label": "MediaSelector.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "MediaSelector.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "file_type": "code", "degree": 19}, {"id": "frontend_admin_panel_src_components_ui_spinner", "label": "Spinner.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Spinner.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", "file_type": "code", "degree": 23}, {"id": "frontend_admin_panel_src_pages_bannersmanager", "label": "BannersManager.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "BannersManager.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_pages_blogs", "label": "Blogs.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Blogs.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", "file_type": "code", "degree": 15}, {"id": "frontend_admin_panel_src_pages_categories", "label": "Categories.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Categories.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "file_type": "code", "degree": 15}, {"id": "frontend_admin_panel_src_pages_financialsettingspage", "label": "FinancialSettingsPage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettingsPage.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_pages_ingredientsmanager", "label": "IngredientsManager.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "IngredientsManager.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_pages_prescriptionsmanager", "label": "PrescriptionsManager.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsManager.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_pages_products", "label": "Products.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Products.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Products.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_src_pages_testimonialsmanager", "label": "TestimonialsManager.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "TestimonialsManager.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", "label": "BannersManager", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "BannersManager", "community": 31, "community_name": "Admin Settings Managers", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Blogs", "community": 13, "community_name": "Media and Blog UI Components", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Categories", "community": 13, "community_name": "Media and Blog UI Components", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "FinancialSettingsPage", "community": 31, "community_name": "Admin Settings Managers", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IngredientsManager", "community": 13, "community_name": "Media and Blog UI Components", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionsManager", "community": 13, "community_name": "Media and Blog UI Components", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Products", "community": 13, "community_name": "Media and Blog UI Components", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "TestimonialsManager", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_services_api_base_domain", "label": "BASE_DOMAIN", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "BASE_DOMAIN", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 11}, {"id": "backend_package_dependencies_nestjs_core", "label": "@nestjs/core", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/core", "community": 130, "community_name": "NestJS Core Framework", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_core", "label": "@nestjs/core", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/core", "community": 130, "community_name": "NestJS Core Framework", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_jwt", "label": "@nestjs/jwt", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/jwt", "community": 131, "community_name": "NestJS JWT Authentication", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_jwt", "label": "@nestjs/jwt", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/jwt", "community": 131, "community_name": "NestJS JWT Authentication", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_swagger", "label": "@nestjs/swagger", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/swagger", "community": 132, "community_name": "NestJS Swagger Documentation", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_swagger", "label": "@nestjs/swagger", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/swagger", "community": 132, "community_name": "NestJS Swagger Documentation", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_nestjs_throttler", "label": "@nestjs/throttler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/throttler", "community": 133, "community_name": "NestJS Rate Limiting", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_throttler", "label": "@nestjs/throttler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/throttler", "community": 133, "community_name": "NestJS Rate Limiting", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_passport_jwt", "label": "passport-jwt", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "passport-jwt", "community": 134, "community_name": "Passport JWT Strategy", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "passport_jwt", "label": "passport-jwt", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "passport-jwt", "community": 134, "community_name": "Passport JWT Strategy", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_prisma_client", "label": "@prisma/client", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/client", "community": 135, "community_name": "Prisma Client Library", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "prisma_client", "label": "@prisma/client", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@prisma/client", "community": 135, "community_name": "Prisma Client Library", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_dependencies_swagger_ui_express", "label": "swagger-ui-express", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "swagger-ui-express", "community": 136, "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "swagger-ui-express", "community": 136, "community_name": "Swagger UI Express", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_cli", "label": "@nestjs/cli", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/cli", "community": 137, "community_name": "NestJS CLI Tooling", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_cli", "label": "@nestjs/cli", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/cli", "community": 137, "community_name": "NestJS CLI Tooling", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_nestjs_testing", "label": "@nestjs/testing", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/testing", "community": 138, "community_name": "NestJS Testing Utilities", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "nestjs_testing", "label": "@nestjs/testing", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/testing", "community": 138, "community_name": "NestJS Testing Utilities", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_ts_jest", "label": "ts-jest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-jest", "community": 139, "community_name": "TypeScript Jest Integration", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "ts_jest", "label": "ts-jest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-jest", "community": 139, "community_name": "TypeScript Jest Integration", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto", "label": "get-products.dto.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "get-products.dto.ts", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/dto/get-products.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto_ts_isenum", "label": "IsEnum", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEnum", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_dto_get_products_dto_ts_isstring", "label": "IsString", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_spec", "label": "products.controller.spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "products.controller.spec.ts", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_products_products_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_products_products_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_body", "label": "Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_get", "label": "Get", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_products_products_controller_ts_param", "label": "Param", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_products_products_controller_ts_patch", "label": "Patch", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_query", "label": "Query", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_module", "label": "products.module.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "products.module.ts", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_products_products_module_ts_module", "label": "Module", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_products_products_service", "label": "products.service.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "products.service.ts", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_products_products_service_spec", "label": "products.service.spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "products.service.spec.ts", "community": 14, "community_name": "Product Query DTOs", "source_file": "backend/src/products/products.service.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_products_products_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 14, "community_name": "Product Query DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_types_bcrypt", "label": "@types/bcrypt", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcrypt", "community": 140, "community_name": "Bcrypt Type Definitions", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_bcrypt", "label": "@types/bcrypt", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcrypt", "community": 140, "community_name": "Bcrypt Type Definitions", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_passport_jwt", "label": "@types/passport-jwt", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/passport-jwt", "community": 141, "community_name": "Passport JWT Type Definitions", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_passport_jwt", "label": "@types/passport-jwt", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/passport-jwt", "community": 141, "community_name": "Passport JWT Type Definitions", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_devdependencies_types_supertest", "label": "@types/supertest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/supertest", "community": 142, "community_name": "Supertest Type Definitions", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "types_supertest", "label": "@types/supertest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/supertest", "community": 142, "community_name": "Supertest Type Definitions", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_blogs_entities_blog_entity", "label": "blog.entity.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "blog.entity.ts", "community": 143, "community_name": "Blog Entity Model", "source_file": "backend/src/blogs/entities/blog.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_home_entities_home_entity", "label": "home.entity.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "home.entity.ts", "community": 144, "community_name": "Home Entity Model", "source_file": "backend/src/home/entities/home.entity.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_entities_wiki_entity", "label": "wiki.entity.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki.entity.ts", "community": 145, "community_name": "Wiki Entity Model", "source_file": "backend/src/wiki/entities/wiki.entity.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_contact_page", "label": "contact/page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "contact/page.tsx", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/app/contact/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_contact_page_metadata", "label": "metadata", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/app/contact/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_contactformclient", "label": "ContactFormClient.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactFormClient.tsx", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/ContactFormClient.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_components_prescriptionuploadmodal", "label": "PrescriptionUploadModal.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "PrescriptionUploadModal.tsx", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_services_api", "label": "lib/services/api.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "lib/services/api.ts", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 24}, {"id": "frontend_application_lib_services_api_api", "label": "api", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "api", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/api.ts", "file_type": "code", "degree": 18}, {"id": "frontend_application_lib_services_authservice", "label": "authService.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "authService.ts", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/authService.ts", "file_type": "code", "degree": 10}, {"id": "frontend_application_lib_services_orderservice", "label": "orderService.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "orderService.ts", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/services/orderService.ts", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_store_settingsstore", "label": "settingsStore.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "settingsStore.ts", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 23}, {"id": "frontend_application_lib_store_tests_settingsstore_test", "label": "settingsStore.test.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "settingsStore.test.ts", "community": 15, "community_name": "Contact and Prescription Features", "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": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "userStore.test.ts", "community": 15, "community_name": "Contact and Prescription Features", "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", "file_type": "code", "degree": 6}, {"id": "frontend_application_app_robots", "label": "robots.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "robots.ts", "community": 151, "community_name": "Search Engine Robots Config", "source_file": "frontend/application/app/robots.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_eslint_config", "label": "application/eslint.config.mjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "application/eslint.config.mjs", "community": 152, "community_name": "Application ESLint Config", "source_file": "frontend/application/eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_eslint_config_eslintconfig", "label": "eslintConfig", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "eslintConfig", "community": 152, "community_name": "Application ESLint Config", "source_file": "frontend/application/eslint.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_postcss_config", "label": "postcss.config.mjs", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.mjs", "community": 153, "community_name": "PostCSS Configuration", "source_file": "frontend/application/postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_postcss_config_config", "label": "config", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "config", "community": 153, "community_name": "PostCSS Configuration", "source_file": "frontend/application/postcss.config.mjs", "file_type": "code", "degree": 1}, {"id": "frontend_application_vitest_setup", "label": "vitest.setup.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.setup.ts", "community": 154, "community_name": "Vitest Test Setup", "source_file": "frontend/application/vitest.setup.ts", "file_type": "code", "degree": 1}, {"id": "scripts_backup_db", "label": "backup_db.sh", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_db.sh", "community": 155, "community_name": "Database Backup Script", "source_file": "scripts/backup_db.sh", "file_type": "code", "degree": 1}, {"id": "scripts_backup_db_sh__entry", "label": "backup_db.sh script", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "backup_db.sh script", "community": 155, "community_name": "Database Backup Script", "source_file": "scripts/backup_db.sh", "file_type": "code", "degree": 1}, {"id": "start", "label": "start.sh", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start.sh", "community": 156, "community_name": "Application Startup Script", "source_file": "start.sh", "file_type": "code", "degree": 1}, {"id": "start_sh__entry", "label": "start.sh script", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start.sh script", "community": 156, "community_name": "Application Startup Script", "source_file": "start.sh", "file_type": "code", "degree": 1}, {"id": "axios_axios", "label": "axios", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 157, "community_name": "Axios HTTP Client", "source_file": "axios", "file_type": "code", "degree": 0}, {"id": "backend_eslint_config", "label": "backend/eslint.config.mjs", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "backend/eslint.config.mjs", "community": 158, "community_name": "Backend ESLint Config", "source_file": "backend/eslint.config.mjs", "file_type": "code", "degree": 0}, {"id": "backend_package_devdependencies", "label": "devDependencies", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 23.2, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 30}, {"id": "backend_package_devdependencies_eslint_config_prettier", "label": "eslint-config-prettier", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-prettier", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_eslint_eslintrc", "label": "@eslint/eslintrc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/eslintrc", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_eslint_plugin_prettier", "label": "eslint-plugin-prettier", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-prettier", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_jest", "label": "jest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "jest", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_nestjs_schematics", "label": "@nestjs/schematics", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/schematics", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_prettier", "label": "prettier", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prettier", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_source_map_support", "label": "source-map-support", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "source-map-support", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_supertest", "label": "supertest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "supertest", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_ts_loader", "label": "ts-loader", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-loader", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_ts_node", "label": "ts-node", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-node", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_tsconfig_paths", "label": "tsconfig-paths", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig-paths", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_types_bcryptjs", "label": "@types/bcryptjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcryptjs", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_types_express", "label": "@types/express", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/express", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_types_jest", "label": "@types/jest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/jest", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_types_js_yaml", "label": "@types/js-yaml", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/js-yaml", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_types_multer", "label": "@types/multer", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/multer", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_config_prettier", "label": "eslint-config-prettier", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-prettier", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "eslint_eslintrc", "label": "@eslint/eslintrc", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@eslint/eslintrc", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "eslint_plugin_prettier", "label": "eslint-plugin-prettier", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-prettier", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "jest", "label": "jest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "jest", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "nestjs_schematics", "label": "@nestjs/schematics", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/schematics", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "prettier", "label": "prettier", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prettier", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "source_map_support", "label": "source-map-support", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "source-map-support", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "supertest", "label": "supertest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "supertest", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ts_loader", "label": "ts-loader", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-loader", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ts_node", "label": "ts-node", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ts-node", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "tsconfig_paths", "label": "tsconfig-paths", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig-paths", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "types_bcryptjs", "label": "@types/bcryptjs", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/bcryptjs", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "types_express", "label": "@types/express", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/express", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "types_jest", "label": "@types/jest", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/jest", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "types_js_yaml", "label": "@types/js-yaml", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/js-yaml", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "types_multer", "label": "@types/multer", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/multer", "community": 16, "community_name": "Development Tooling Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_eslint_config", "label": "eslint.config.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint.config.js", "community": 164, "community_name": "Root ESLint Configuration", "source_file": "frontend/admin-panel/eslint.config.js", "file_type": "code", "degree": 0}, {"id": "frontend_admin_panel_postcss_config", "label": "postcss.config.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss.config.js", "community": 165, "community_name": "PostCSS Build Config", "source_file": "frontend/admin-panel/postcss.config.js", "file_type": "code", "degree": 0}, {"id": "frontend_admin_panel_tailwind_config", "label": "tailwind.config.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwind.config.js", "community": 166, "community_name": "Tailwind CSS Configuration", "source_file": "frontend/admin-panel/tailwind.config.js", "file_type": "code", "degree": 0}, {"id": "frontend_admin_panel_vite_config", "label": "vite.config.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 167, "community_name": "Vite Build Configuration", "source_file": "frontend/admin-panel/vite.config.ts", "file_type": "code", "degree": 0}, {"id": "frontend_application_app_homeclient", "label": "HomeClient.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "HomeClient.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/HomeClient.tsx", "file_type": "code", "degree": 22}, {"id": "frontend_application_app_page", "label": "app/page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "app/page.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_app_page_metadata", "label": "metadata", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_trust_seals_page", "label": "trust-seals/page.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "trust-seals/page.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/trust-seals/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_trust_seals_page_metadata", "label": "metadata", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/app/trust-seals/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_enamadbadge", "label": "EnamadBadge.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "EnamadBadge.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/EnamadBadge.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_footer", "label": "Footer.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/Footer.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_hero", "label": "Hero.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/Hero.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_components_tests_footer_test", "label": "Footer.test.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Footer.test.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/__tests__/Footer.test.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_tests_hero_test", "label": "Hero.test.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Hero.test.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/__tests__/Hero.test.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_tickerbanner", "label": "TickerBanner.tsx", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "TickerBanner.tsx", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/components/TickerBanner.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "useSettingsStore", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 24.6, "font": {"size": 12, "color": "#ffffff"}, "title": "useSettingsStore", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/store/settingsStore.ts", "file_type": "code", "degree": 33}, {"id": "frontend_application_lib_types", "label": "types.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 18.4, "font": {"size": 12, "color": "#ffffff"}, "title": "types.ts", "community": 17, "community_name": "Home Page Client Components", "source_file": "frontend/application/lib/types.ts", "file_type": "code", "degree": 19}, {"id": "frontend_application_vitest_config", "label": "vitest.config.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.ts", "community": 171, "community_name": "Vitest Test Configuration", "source_file": "frontend/application/vitest.config.ts", "file_type": "code", "degree": 0}, {"id": "tailwindcss_tailwindcss", "label": "tailwindcss", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 176, "community_name": "Tailwind CSS Library", "source_file": "tailwindcss", "file_type": "code", "degree": 0}, {"id": "backend_src_admin_admin_service", "label": "admin.service.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.service.ts", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/admin/admin.service.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_admin_admin_service_spec", "label": "admin.service.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin.service.spec.ts", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/admin/admin.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_categories_service", "label": "categories.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "categories.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/admin/categories.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_auth_auth_service_spec", "label": "auth.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.service.spec.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/auth.service.spec.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_pets_pets_service_spec", "label": "pets.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "pets.service.spec.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/pets/pets.service.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_prisma_prisma_service", "label": "prisma.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 26.3, "font": {"size": 12, "color": "#ffffff"}, "title": "prisma.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/prisma/prisma.service.ts", "file_type": "code", "degree": 37}, {"id": "backend_src_prisma_prisma_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_service", "label": "redis.service.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "redis.service.ts", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/redis/redis.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_redis_redis_service_spec", "label": "redis.service.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "redis.service.spec.ts", "community": 33, "community_name": "Redis and Admin Services", "source_file": "backend/src/redis/redis.service.spec.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_redis_redis_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 33, "community_name": "Redis and Admin Services", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_service", "label": "settings.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/settings/settings.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_service_spec", "label": "settings.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.service.spec.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/settings/settings.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.0, "font": {"size": 0, "color": "#ffffff"}, "title": "users.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/users/users.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_users_users_service_spec", "label": "users.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "users.service.spec.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/users/users.service.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_videos_videos_service", "label": "videos.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "videos.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/videos/videos.service.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_b2b_b2b_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_b2b_b2b_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_b2b_b2b_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_body", "label": "Body", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_b2b_b2b_controller_ts_controller", "label": "Controller", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_get", "label": "Get", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_b2b_b2b_controller_ts_param", "label": "Param", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_post", "label": "Post", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_controller_ts_put", "label": "Put", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_controller_ts_req", "label": "Req", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_b2b_b2b_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_b2b_b2b_service_ts_injectable", "label": "Injectable", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 19, "community_name": "B2B Inquiry Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller", "label": "admin/blogs.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/blogs.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/admin/blogs.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_categories_controller", "label": "categories.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "categories.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/admin/categories.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_media_controller", "label": "media.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "media.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/admin/media.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_pets_controller", "label": "admin/pets.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/pets.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/admin/pets.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_reports_controller", "label": "reports.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "reports.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/admin/reports.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_auth_jwt_auth_guard", "label": "jwt-auth.guard.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "jwt-auth.guard.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/auth/jwt-auth.guard.ts", "file_type": "code", "degree": 24}, {"id": "backend_src_auth_jwt_auth_guard_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_roles_decorator", "label": "auth/roles.decorator.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "auth/roles.decorator.ts", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "auth/roles.guard.ts", "community": 2, "community_name": "Auth Guards and Roles", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "b2b.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/b2b/b2b.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_banners_banners_controller", "label": "banners.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "banners.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/banners/banners.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_cms_cms_controller", "label": "cms.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "cms.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/cms/cms.controller.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_common_decorators_roles_decorator", "label": "decorators/roles.decorator.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "decorators/roles.decorator.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/decorators/roles.decorator.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_common_decorators_roles_decorator_roles_key", "label": "ROLES_KEY", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ROLES_KEY", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/decorators/roles.decorator.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_guards_roles_guard", "label": "guards/roles.guard.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "guards/roles.guard.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/guards/roles.guard.ts", "file_type": "code", "degree": 14}, {"id": "backend_src_common_guards_roles_guard_spec", "label": "roles.guard.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "roles.guard.spec.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/common/guards/roles.guard.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_guards_roles_guard_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller", "label": "contact.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/contact/contact.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_ingredients_ingredients_controller", "label": "ingredients.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ingredients.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/ingredients/ingredients.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_prescriptions_prescriptions_controller", "label": "prescriptions.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "prescriptions.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_products_products_controller", "label": "products.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "products.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/products/products.controller.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_settings_settings_controller", "label": "settings.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "settings.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_settings_settings_controller_spec", "label": "settings.controller.spec.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.controller.spec.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/settings/settings.controller.spec.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_settings_settings_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiOperation", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 11}, {"id": "backend_src_settings_settings_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_delete", "label": "Delete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_settings_settings_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_settings_settings_controller_ts_patch", "label": "Patch", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_settings_settings_controller_ts_put", "label": "Put", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_settings_settings_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller", "label": "smart-advisor.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_testimonials_testimonials_controller", "label": "testimonials.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "testimonials.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/testimonials/testimonials.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_wholesale_wholesale_controller", "label": "wholesale.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "wholesale.controller.ts", "community": 2, "community_name": "Auth Guards and Roles", "source_file": "backend/src/wholesale/wholesale.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_admin_categories_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_categories_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_body", "label": "Body", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_ts_controller", "label": "Controller", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_delete", "label": "Delete", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_get", "label": "Get", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_ts_param", "label": "Param", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_categories_controller_ts_post", "label": "Post", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_put", "label": "Put", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_query", "label": "Query", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_categories_service_ts_injectable", "label": "Injectable", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 20, "community_name": "Category Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_banners_banners_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_banners_banners_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_body", "label": "Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_banners_banners_controller_ts_controller", "label": "Controller", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_delete", "label": "Delete", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_get", "label": "Get", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_param", "label": "Param", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_banners_banners_controller_ts_patch", "label": "Patch", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_post", "label": "Post", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_put", "label": "Put", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_banners_banners_service_ts_injectable", "label": "Injectable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 21, "community_name": "Banner Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_media_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_delete", "label": "Delete", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_media_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_put", "label": "Put", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_admin_media_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "uploadedfile", "label": "UploadedFile", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UploadedFile", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "useinterceptors", "label": "UseInterceptors", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseInterceptors", "community": 22, "community_name": "Media Upload Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_ingredients_ingredients_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_delete", "label": "Delete", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_ingredients_ingredients_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_controller_ts_patch", "label": "Patch", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_ingredients_ingredients_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 23, "community_name": "Ingredient Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_app", "label": "App.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "App.tsx", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/App.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_admin_panel_src_main", "label": "main.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "main.tsx", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/main.tsx", "file_type": "code", "degree": 2}, {"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": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_pages_dashboard", "label": "Dashboard.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard.tsx", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_pages_settings", "label": "Settings.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings.tsx", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/Settings.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_src_pages_uitexts", "label": "UITexts.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UITexts.tsx", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_pages_uitexts_group_page_map", "label": "GROUP_PAGE_MAP", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GROUP_PAGE_MAP", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_groups", "label": "GROUPS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "GROUPS", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_uitexts_page_tabs", "label": "PAGE_TABS", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PAGE_TABS", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_routes_adminroutes", "label": "adminRoutes.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 36.9, "font": {"size": 12, "color": "#ffffff"}, "title": "adminRoutes.tsx", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 61}, {"id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", "label": "ContactSubmissions", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ContactSubmissions", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_dashboard", "label": "Dashboard", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Dashboard", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_routes_adminroutes_router", "label": "router", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "router", "community": 24, "community_name": "Admin Dashboard Components", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Settings", "community": 24, "community_name": "Admin Dashboard Components", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "UITexts", "community": 24, "community_name": "Admin Dashboard Components", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_admin_module", "label": "admin.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.module.ts", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/admin.module.ts", "file_type": "code", "degree": 34}, {"id": "backend_src_admin_admin_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 25, "community_name": "Admin Blog Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_media_service", "label": "media.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "media.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/admin/media.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_pets_service", "label": "admin/pets.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/pets.service.ts", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/pets.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_pets_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 25, "community_name": "Admin Blog Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller", "label": "admin/wiki.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/wiki.controller.ts", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.controller.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_admin_wiki_service", "label": "admin/wiki.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/wiki.service.ts", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/wiki.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_wiki_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 25, "community_name": "Admin Blog Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_module", "label": "redis.module.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "redis.module.ts", "community": 33, "community_name": "Redis and Admin Services", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 33, "community_name": "Redis and Admin Services", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_redis_redis_module_ts_module", "label": "Module", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 33, "community_name": "Redis and Admin Services", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_services_sms_service", "label": "sms.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sms.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/common/services/sms.service.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_common_services_sms_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_sms_module", "label": "sms.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sms.module.ts", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/common/sms.module.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_sms_module_ts_global", "label": "Global", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_sms_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_module", "label": "contact.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.module.ts", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "backend/src/contact/contact.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_contact_contact_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 35, "community_name": "Contact and SMS Modules", "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": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "contact.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/contact/contact.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_orders_orders_service", "label": "orders.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "orders.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/orders/orders.service.ts", "file_type": "code", "degree": 13}, {"id": "backend_src_orders_orders_service_spec", "label": "orders.service.spec.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.service.spec.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/orders/orders.service.spec.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_body", "label": "Body", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_controller", "label": "Controller", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_get", "label": "Get", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_param", "label": "Param", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_patch", "label": "Patch", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_post", "label": "Post", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_req", "label": "Req", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_prescriptions_prescriptions_service_ts_injectable", "label": "Injectable", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 27, "community_name": "Prescription Review Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_body", "label": "Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", "label": "Controller", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", "label": "Delete", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_get", "label": "Get", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_param", "label": "Param", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", "label": "Patch", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_post", "label": "Post", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 28, "community_name": "Smart Advisor Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_testimonials_testimonials_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_testimonials_testimonials_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_body", "label": "Body", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_ts_controller", "label": "Controller", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_delete", "label": "Delete", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_get", "label": "Get", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_param", "label": "Param", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_testimonials_testimonials_controller_ts_patch", "label": "Patch", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_post", "label": "Post", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_testimonials_testimonials_service_ts_injectable", "label": "Injectable", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 29, "community_name": "Testimonials Management Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_strategy_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto", "label": "address.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "address.dto.ts", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/dto/address.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_dto_address_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_address_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto", "label": "update-profile.dto.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "update-profile.dto.ts", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/dto/update-profile.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_dto_update_profile_dto_ts_isstring", "label": "IsString", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller", "label": "users.controller.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "users.controller.ts", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.ts", "file_type": "code", "degree": 11}, {"id": "backend_src_users_users_controller_spec", "label": "users.controller.spec.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "users.controller.spec.ts", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "backend/src/users/users.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_apicreatedresponse", "label": "ApiCreatedResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiCreatedResponse", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_users_users_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_body", "label": "Body", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_users_users_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_delete", "label": "Delete", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_users_users_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_controller_ts_patch", "label": "Patch", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Patch", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_users_users_controller_ts_post", "label": "Post", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_users_users_controller_ts_req", "label": "Req", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_service_ts_injectable", "label": "Injectable", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 3, "community_name": "JWT Strategy and Address DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_layout", "label": "Layout.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Layout.tsx", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Layout.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_admin_panel_src_components_protectedroute", "label": "ProtectedRoute.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ProtectedRoute.tsx", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_components_sidebar", "label": "Sidebar.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Sidebar.tsx", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_components_sidebar_menugroups", "label": "menuGroups", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "menuGroups", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_topbar", "label": "Topbar.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Topbar.tsx", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_components_topbar_searchable_pages", "label": "SEARCHABLE_PAGES", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SEARCHABLE_PAGES", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/components/Topbar.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_login", "label": "Login.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Login.tsx", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/pages/Login.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_services_api", "label": "src/services/api.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 28.1, "font": {"size": 12, "color": "#ffffff"}, "title": "src/services/api.ts", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 41}, {"id": "frontend_admin_panel_src_services_api_api", "label": "api", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 24.1, "font": {"size": 12, "color": "#ffffff"}, "title": "api", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/services/api.ts", "file_type": "code", "degree": 32}, {"id": "frontend_admin_panel_src_services_api_failedqueue", "label": "failedQueue", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "failedQueue", "community": 30, "community_name": "Admin Sidebar and Layout", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "adminAuthStore.ts", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", "label": "useAdminAuthStore", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "useAdminAuthStore", "community": 30, "community_name": "Admin Sidebar and Layout", "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_pages_b2bmanager", "label": "B2BManager.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BManager.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_admin_panel_src_pages_seosettingspage", "label": "SeoSettingsPage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "SeoSettingsPage.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_src_pages_smartadvisormanager", "label": "SmartAdvisorManager.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "SmartAdvisorManager.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_admin_panel_src_pages_systemsettingspage", "label": "SystemSettingsPage.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettingsPage.tsx", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", "label": "B2BManager", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "B2BManager", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SeoSettingsPage", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SmartAdvisorManager", "community": 31, "community_name": "Admin Settings Managers", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "SystemSettingsPage", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_src_types_admin", "label": "admin.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 25.0, "font": {"size": 12, "color": "#ffffff"}, "title": "admin.ts", "community": 31, "community_name": "Admin Settings Managers", "source_file": "frontend/admin-panel/src/types/admin.ts", "file_type": "code", "degree": 34}, {"id": "frontend_application_app_checkout_success_id_page", "label": "[id]/page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "[id]/page.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_profile_page", "label": "profile/page.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "profile/page.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/app/profile/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_featuredproducts", "label": "FeaturedProducts.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "FeaturedProducts.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/FeaturedProducts.tsx", "file_type": "code", "degree": 18}, {"id": "frontend_application_components_ordersuccess", "label": "OrderSuccess.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "OrderSuccess.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/OrderSuccess.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_petprofile", "label": "PetProfile.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 20.6, "font": {"size": 12, "color": "#ffffff"}, "title": "PetProfile.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/PetProfile.tsx", "file_type": "code", "degree": 24}, {"id": "frontend_application_components_smartadvisor", "label": "SmartAdvisor.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "SmartAdvisor.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 22}, {"id": "frontend_application_components_smartadvisor_current_symptoms", "label": "CURRENT_SYMPTOMS", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CURRENT_SYMPTOMS", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_smartadvisor_medical_histories", "label": "MEDICAL_HISTORIES", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MEDICAL_HISTORIES", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/SmartAdvisor.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_tests_featuredproducts_test", "label": "FeaturedProducts.test.tsx", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "FeaturedProducts.test.tsx", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_tests_featuredproducts_test_mockproducts", "label": "mockProducts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "mockProducts", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_store_usepetstore", "label": "usePetStore.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "usePetStore.ts", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 21}, {"id": "frontend_application_lib_store_usepetstore_usepetstore", "label": "usePetStore", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "usePetStore", "community": 32, "community_name": "User Profile and Success Pages", "source_file": "frontend/application/lib/store/usePetStore.ts", "file_type": "code", "degree": 22}, {"id": "backend_src_auth_auth_controller_spec", "label": "auth.controller.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.controller.spec.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_auth_auth_module", "label": "auth.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "auth.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/auth/auth.module.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_auth_auth_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_service", "label": "auth.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.9, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.service.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/auth.service.ts", "file_type": "code", "degree": 18}, {"id": "backend_src_auth_auth_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_jwt_strategy", "label": "jwt.strategy.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "jwt.strategy.ts", "community": 18, "community_name": "Core Services and Auth Logic", "source_file": "backend/src/auth/jwt.strategy.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_users_users_module", "label": "users.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "users.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/users/users.module.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_users_users_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_filters_http_exception_filter", "label": "http-exception.filter.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "http-exception.filter.ts", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/http-exception.filter.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_common_filters_http_exception_filter_ts_catch", "label": "Catch", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Catch", "community": 34, "community_name": "Global Exception Filters", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_filters_prisma_exception_filter", "label": "prisma-exception.filter.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma-exception.filter.ts", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_filters_prisma_exception_filter_ts_catch", "label": "Catch", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Catch", "community": 34, "community_name": "Global Exception Filters", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_interceptors_decimal_interceptor", "label": "decimal.interceptor.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "decimal.interceptor.ts", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_interceptors_decimal_interceptor_spec", "label": "decimal.interceptor.spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "decimal.interceptor.spec.ts", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 34, "community_name": "Global Exception Filters", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_schemas_error_response_schema", "label": "error-response.schema.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "error-response.schema.ts", "community": 34, "community_name": "Global Exception Filters", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 34, "community_name": "Global Exception Filters", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_main", "label": "main.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "main.ts", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/src/main.ts", "file_type": "code", "degree": 9}, {"id": "backend_test_app_audit_verification_e2e_spec", "label": "app-audit-verification.e2e-spec.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "app-audit-verification.e2e-spec.ts", "community": 34, "community_name": "Global Exception Filters", "source_file": "backend/test/app-audit-verification.e2e-spec.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_contact_contact_controller_ts_body", "label": "Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 35, "community_name": "Contact and SMS Modules", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 35, "community_name": "Contact and SMS Modules", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 35, "community_name": "Contact and SMS Modules", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_contact_contact_controller_ts_query", "label": "Query", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_contact_contact_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_contact_contact_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 35, "community_name": "Contact and SMS Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig", "label": "backend/tsconfig.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "backend/tsconfig.json", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 22}, {"id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", "label": "allowSyntheticDefaultImports", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "allowSyntheticDefaultImports", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_baseurl", "label": "baseUrl", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "baseUrl", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_declaration", "label": "declaration", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "declaration", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_emitdecoratormetadata", "label": "emitDecoratorMetadata", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "emitDecoratorMetadata", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_experimentaldecorators", "label": "experimentalDecorators", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "experimentalDecorators", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", "label": "forceConsistentCasingInFileNames", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "forceConsistentCasingInFileNames", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_incremental", "label": "incremental", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "incremental", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_isolatedmodules", "label": "isolatedModules", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "isolatedModules", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_module", "label": "module", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", "label": "noFallthroughCasesInSwitch", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_noimplicitany", "label": "noImplicitAny", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noImplicitAny", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_outdir", "label": "outDir", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "outDir", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_removecomments", "label": "removeComments", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "removeComments", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_resolvepackagejsonexports", "label": "resolvePackageJsonExports", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "resolvePackageJsonExports", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_sourcemap", "label": "sourceMap", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceMap", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_strictbindcallapply", "label": "strictBindCallApply", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "strictBindCallApply", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_strictnullchecks", "label": "strictNullChecks", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "strictNullChecks", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "backend_tsconfig_compileroptions_target", "label": "target", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 36, "community_name": "Backend TypeScript Config", "source_file": "backend/tsconfig.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app", "label": "tsconfig.app.json", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.app.json", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions", "label": "compilerOptions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", "label": "allowImportingTsExtensions", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "allowImportingTsExtensions", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "erasableSyntaxOnly", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "jsx", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_module", "label": "module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", "label": "tsBuildInfoFile", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tsBuildInfoFile", "community": 37, "community_name": "App TypeScript Config", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", "label": "verbatimModuleSyntax", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "verbatimModuleSyntax", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_include", "label": "include", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_app_json_ref_dom", "label": "DOM", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DOM", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_app_json_ref_es2023", "label": "ES2023", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ES2023", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "ref_src", "label": "src", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "src", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "ref_vite_client", "label": "vite/client", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vite/client", "community": 37, "community_name": "App TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.app.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_confirmmodal", "label": "ConfirmModal.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "ConfirmModal.tsx", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "file_type": "code", "degree": 17}, {"id": "frontend_admin_panel_src_pages_cms", "label": "CMS.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "CMS.tsx", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_pages_videos", "label": "Videos.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos.tsx", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Videos.tsx", "file_type": "code", "degree": 9}, {"id": "frontend_admin_panel_src_pages_wholesaleapplications", "label": "WholesaleApplications.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplications.tsx", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_admin_panel_src_pages_wiki", "label": "Wiki.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Wiki.tsx", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_admin_panel_src_routes_adminroutes_cms", "label": "CMS", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "CMS", "community": 38, "community_name": "CMS and Media Modals", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Videos", "community": 38, "community_name": "CMS and Media Modals", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "WholesaleApplications", "community": 38, "community_name": "CMS and Media Modals", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Wiki", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies", "label": "dependencies", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 19.3, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 21}, {"id": "backend_package_dependencies_bcrypt", "label": "bcrypt", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "bcrypt", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_class_transformer", "label": "class-transformer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "class-transformer", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_class_validator", "label": "class-validator", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "class-validator", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_ioredis", "label": "ioredis", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ioredis", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_nestjs_common", "label": "@nestjs/common", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/common", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_nestjs_passport", "label": "@nestjs/passport", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/passport", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_nestjs_platform_express", "label": "@nestjs/platform-express", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/platform-express", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_passport", "label": "passport", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "passport", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_reflect_metadata", "label": "reflect-metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "reflect-metadata", "community": 129, "community_name": "Reflect Metadata Library", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_dependencies_rxjs", "label": "rxjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "rxjs", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "bcrypt", "label": "bcrypt", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "bcrypt", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "class_transformer", "label": "class-transformer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "class-transformer", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "class_validator", "label": "class-validator", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "class-validator", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ioredis", "label": "ioredis", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ioredis", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "nestjs_common", "label": "@nestjs/common", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/common", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "nestjs_passport", "label": "@nestjs/passport", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/passport", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "nestjs_platform_express", "label": "@nestjs/platform-express", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@nestjs/platform-express", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "passport", "label": "passport", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "passport", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "reflect_metadata", "label": "reflect-metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "reflect-metadata", "community": 129, "community_name": "Reflect Metadata Library", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "rxjs", "label": "rxjs", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "rxjs", "community": 39, "community_name": "Backend Dependencies", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "ApiOperation", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 12}, {"id": "backend_src_cms_cms_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_body", "label": "Body", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_controller_ts_delete", "label": "Delete", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_get", "label": "Get", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_param", "label": "Param", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 6}, {"id": "backend_src_cms_cms_controller_ts_post", "label": "Post", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_put", "label": "Put", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_cms_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_cms_service", "label": "cms.service.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.service.ts", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/cms.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_cms_cms_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_cms_dto_cms_dto", "label": "cms.dto.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.dto.ts", "community": 4, "community_name": "CMS Content Management", "source_file": "backend/src/cms/dto/cms.dto.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_dto_cms_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_dto_cms_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_cms_dto_cms_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_cms_dto_cms_dto_ts_isstring", "label": "IsString", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 3}, {"id": "isuuid", "label": "IsUUID", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsUUID", "community": 4, "community_name": "CMS Content Management", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node", "label": "tsconfig.node.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.node.json", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions", "label": "compilerOptions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", "label": "allowImportingTsExtensions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "allowImportingTsExtensions", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "erasableSyntaxOnly", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "lib", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_module", "label": "module", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleDetection", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noEmit", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noFallthroughCasesInSwitch", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedLocals", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "noUnusedParameters", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", "label": "tsBuildInfoFile", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tsBuildInfoFile", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", "label": "verbatimModuleSyntax", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "verbatimModuleSyntax", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_tsconfig_node_include", "label": "include", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 40, "community_name": "Node TypeScript Config", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ES2023", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "concept", "degree": 1}, {"id": "ref_node", "label": "node", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "node", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "concept", "degree": 1}, {"id": "ref_vite_config_ts", "label": "vite.config.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.ts", "community": 40, "community_name": "Node TypeScript Config", "source_file": "frontend/admin-panel/tsconfig.node.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_admin_blogs_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_body", "label": "Body", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_blogs_controller_ts_controller", "label": "Controller", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_delete", "label": "Delete", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 41, "community_name": "Admin Blog Controller", "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": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_param", "label": "Param", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 41, "community_name": "Admin Blog Controller", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_put", "label": "Put", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_query", "label": "Query", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_controller_ts_request", "label": "Request", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 41, "community_name": "Admin Blog Controller", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 41, "community_name": "Admin Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_wholesale_wholesale_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_body", "label": "Body", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_controller", "label": "Controller", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_get", "label": "Get", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_param", "label": "Param", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_controller_ts_post", "label": "Post", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_put", "label": "Put", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wholesale_wholesale_controller_ts_request", "label": "Request", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Request", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 42, "community_name": "Wholesale Controller", "source_file": "", "file_type": "code", "degree": 4}, {"id": "frontend_admin_panel_package_devdependencies_tailwindcss", "label": "tailwindcss", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies", "label": "devDependencies", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 14}, {"id": "frontend_application_package_devdependencies_eslint_config_next", "label": "eslint-config-next", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-next", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_jsdom", "label": "jsdom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "jsdom", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_tailwindcss", "label": "tailwindcss", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_testing_library_react", "label": "@testing-library/react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_types_react", "label": "@types/react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_vitest", "label": "vitest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "eslint_config_next", "label": "eslint-config-next", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-config-next", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_json_tailwindcss", "label": "tailwindcss", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "tailwindcss", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_admin_panel_package_json_types_react", "label": "@types/react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "frontend_admin_panel_package_json_vitejs_plugin_react", "label": "@vitejs/plugin-react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 2}, {"id": "jsdom", "label": "jsdom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "jsdom", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "testing_library_jest_dom", "label": "@testing-library/jest-dom", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/jest-dom", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "testing_library_react", "label": "@testing-library/react", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@testing-library/react", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "vitest", "label": "vitest", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 43, "community_name": "Frontend Testing and Styles", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 44, "community_name": "Generic CRUD Controller", "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.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 44, "community_name": "Generic CRUD Controller", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 44, "community_name": "Generic CRUD Controller", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_ts_controller", "label": "Controller", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_delete", "label": "Delete", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 44, "community_name": "Generic CRUD Controller", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 44, "community_name": "Generic CRUD Controller", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_wiki_controller_ts_post", "label": "Post", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_wiki_controller_ts_put", "label": "Put", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 44, "community_name": "Generic CRUD Controller", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 44, "community_name": "Generic CRUD Controller", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 44, "community_name": "Generic CRUD Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_controller", "label": "seo.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "seo.controller.ts", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_seo_seo_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_seo_seo_controller_ts_param", "label": "Param", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_module", "label": "seo.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "seo.module.ts", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_seo_seo_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_seo_seo_service", "label": "seo.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "seo.service.ts", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "backend/src/seo/seo.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_seo_seo_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 45, "community_name": "SEO and Sitemap Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_pagination", "label": "Pagination.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "Pagination.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_admin_panel_src_pages_coupons", "label": "Coupons.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "Coupons.tsx", "community": 46, "community_name": "Coupon Management UI", "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_src_pages_media", "label": "Media.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Media.tsx", "community": 38, "community_name": "CMS and Media Modals", "source_file": "frontend/admin-panel/src/pages/Media.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_admin_panel_src_pages_pets", "label": "Pets.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "Pets.tsx", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/pages/Pets.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_admin_panel_src_routes_adminroutes_coupons", "label": "Coupons", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Coupons", "community": 46, "community_name": "Coupon Management UI", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Media", "community": 38, "community_name": "CMS and Media Modals", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Pets", "community": 13, "community_name": "Media and Blog UI Components", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "package", "label": "package.json", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "package.json", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 5}, {"id": "package_devdependencies", "label": "devDependencies", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "devDependencies", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_devdependencies_concurrently", "label": "concurrently", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "concurrently", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 2}, {"id": "package_name", "label": "name", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_private", "label": "private", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts", "label": "scripts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 11}, {"id": "package_scripts_build", "label": "build", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_admin", "label": "build:admin", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build:admin", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_backend", "label": "build:backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build:backend", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build_frontend", "label": "build:frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build:frontend", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev", "label": "dev", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_admin", "label": "dev:admin", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:admin", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_backend", "label": "dev:backend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:backend", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_dev_frontend", "label": "dev:frontend", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev:frontend", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_install_all", "label": "install:all", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "install:all", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_start", "label": "start", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_version", "label": "version", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "concurrently", "label": "concurrently", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "concurrently", "community": 47, "community_name": "Project Build Scripts", "source_file": "package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_home_home_controller", "label": "home.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "home.controller.ts", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_home_home_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_controller", "label": "Controller", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_controller_ts_get", "label": "Get", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_module", "label": "home.module.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "home.module.ts", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_home_home_module_ts_module", "label": "Module", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_home_home_service", "label": "home.service.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "home.service.ts", "community": 48, "community_name": "Home Data Module", "source_file": "backend/src/home/home.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_home_home_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 48, "community_name": "Home Data Module", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_devdependencies_globals", "label": "globals", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies", "label": "devDependencies", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 17.1, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 16}, {"id": "frontend_admin_panel_package_devdependencies_autoprefixer", "label": "autoprefixer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "autoprefixer", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", "label": "eslint-plugin-react-hooks", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-hooks", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", "label": "eslint-plugin-react-refresh", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-refresh", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_globals", "label": "globals", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_postcss", "label": "postcss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "autoprefixer", "label": "autoprefixer", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "autoprefixer", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_package_json_eslint", "label": "eslint", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 3}, {"id": "backend_package_json_globals", "label": "globals", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "globals", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 2}, {"id": "eslint_plugin_react_hooks", "label": "eslint-plugin-react-hooks", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-hooks", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "eslint_plugin_react_refresh", "label": "eslint-plugin-react-refresh", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "eslint-plugin-react-refresh", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "postcss", "label": "postcss", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "postcss", "community": 49, "community_name": "Linting and PostCSS Config", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto", "label": "create-order.dto.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create-order.dto.ts", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/dto/create-order.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isarray", "label": "IsArray", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsArray", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isnumber", "label": "IsNumber", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_dto_create_order_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_dto_create_order_dto_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_dto_create_order_dto_ts_type", "label": "Type", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller", "label": "orders.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "orders.controller.ts", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.ts", "file_type": "code", "degree": 12}, {"id": "backend_src_orders_orders_controller_spec", "label": "orders.controller.spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.controller.spec.ts", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_apicreatedresponse", "label": "ApiCreatedResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiCreatedResponse", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_orders_orders_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_body", "label": "Body", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_isnumber", "label": "IsNumber", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNumber", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_isstring", "label": "IsString", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_param", "label": "Param", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_post", "label": "Post", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_orders_orders_controller_ts_query", "label": "Query", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_controller_ts_req", "label": "Req", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Req", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 4}, {"id": "backend_src_orders_orders_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_module", "label": "orders.module.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "orders.module.ts", "community": 5, "community_name": "Order Creation DTOs", "source_file": "backend/src/orders/orders.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_orders_orders_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_orders_orders_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "validatenested", "label": "ValidateNested", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ValidateNested", "community": 5, "community_name": "Order Creation DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed", "label": "seed.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "seed.ts", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed.ts", "file_type": "code", "degree": 2}, {"id": "backend_prisma_seed_home", "label": "seed-home.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-home.ts", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-home.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_home_prisma", "label": "prisma", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-home.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_prisma", "label": "prisma", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_products", "label": "seed-products.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-products.ts", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 10}, {"id": "backend_prisma_seed_products_prisma", "label": "prisma", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_products_product_symptoms_map", "label": "PRODUCT_SYMPTOMS_MAP", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PRODUCT_SYMPTOMS_MAP", "community": 50, "community_name": "Database Seeding Logic", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "PRODUCT_TAGLINES_MAP", "community": 50, "community_name": "Database Seeding Logic", "source_file": "backend/prisma/seed-products.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_migrations_20260526145407_init_migration", "label": "20260526145407_init/migration.sql", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "20260526145407_init/migration.sql", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 14}, {"id": "backend_prisma_migrations_20260526145407_init_migration_coupons", "label": "\"coupons\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""coupons"", "community": 51, "community_name": "Prisma Database Migrations", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""health_logs"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_order_items", "label": "\"order_items\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": ""order_items"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 3}, {"id": "backend_prisma_migrations_20260526145407_init_migration_orders", "label": "\"orders\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ""orders"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 4}, {"id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", "label": "\"pet_medical_conditions\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""pet_medical_conditions"", "community": 51, "community_name": "Prisma Database Migrations", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ""pets"", "community": 51, "community_name": "Prisma Database Migrations", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""product_ingredients"", "community": 51, "community_name": "Prisma Database Migrations", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""product_symptoms"", "community": 51, "community_name": "Prisma Database Migrations", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ""products"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 5}, {"id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", "label": "\"reminder_completions\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""reminder_completions"", "community": 51, "community_name": "Prisma Database Migrations", "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": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": ""reminders"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 4}, {"id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", "label": "\"user_addresses\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""user_addresses"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "backend_prisma_migrations_20260526145407_init_migration_users", "label": "\"users\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": ""users"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 5}, {"id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", "label": "\"wallet_transactions\"", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": ""wallet_transactions"", "community": 51, "community_name": "Prisma Database Migrations", "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies", "label": "dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 11}, {"id": "frontend_admin_panel_package_dependencies_axios", "label": "axios", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_react", "label": "react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_react_hot_toast", "label": "react-hot-toast", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react-hot-toast", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_react_router_dom", "label": "react-router-dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_recharts", "label": "recharts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "recharts", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_tanstack_react_query", "label": "@tanstack/react-query", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-query", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_dependencies_vite", "label": "vite", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_json_axios", "label": "axios", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_package_json_react", "label": "react", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "react_hot_toast", "label": "react-hot-toast", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "react-hot-toast", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "react_router_dom", "label": "react-router-dom", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "react-router-dom", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "recharts", "label": "recharts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "recharts", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "tanstack_react_query", "label": "@tanstack/react-query", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "@tanstack/react-query", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "vite", "label": "vite", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 52, "community_name": "Frontend Core Dependencies", "source_file": "frontend/admin-panel/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_admin_panel_src_components_ui_skeleton", "label": "ui/Skeleton.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ui/Skeleton.tsx", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_admin_panel_src_pages_orders", "label": "Orders.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Orders.tsx", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 15}, {"id": "frontend_admin_panel_src_pages_orders_statusstyles", "label": "statusStyles", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "statusStyles", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_users", "label": "Users.tsx", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Users.tsx", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/pages/Users.tsx", "file_type": "code", "degree": 15}, {"id": "frontend_admin_panel_src_routes_adminroutes_orders", "label": "Orders", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Orders", "community": 53, "community_name": "UI Skeleton and Tables", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Users", "community": 53, "community_name": "UI Skeleton and Tables", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_app_loading", "label": "loading.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "loading.tsx", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/app/loading.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_shop_page", "label": "shop/page.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "shop/page.tsx", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/app/shop/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_shop_page_metadata", "label": "metadata", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/app/shop/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_archivepage", "label": "ArchivePage.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.7, "font": {"size": 12, "color": "#ffffff"}, "title": "ArchivePage.tsx", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 22}, {"id": "frontend_application_components_archivepage_category_map", "label": "CATEGORY_MAP", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORY_MAP", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_archivepage_icon_map", "label": "ICON_MAP", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ICON_MAP", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/ArchivePage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_skeleton", "label": "components/Skeleton.tsx", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "components/Skeleton.tsx", "community": 54, "community_name": "Shop Loading States", "source_file": "frontend/application/components/Skeleton.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_app_shop_slug_page", "label": "shop/[slug]/page.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "shop/[slug]/page.tsx", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/app/shop/[slug]/page.tsx", "file_type": "code", "degree": 6}, {"id": "frontend_application_components_productpage", "label": "ProductPage.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 21.9, "font": {"size": 12, "color": "#ffffff"}, "title": "ProductPage.tsx", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 27}, {"id": "frontend_application_components_productpage_icon_map", "label": "ICON_MAP", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ICON_MAP", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_productpage_usecalculatorstore", "label": "useCalculatorStore", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "useCalculatorStore", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/ProductPage.tsx", "file_type": "code", "degree": 2}, {"id": "frontend_application_components_tests_tooltip_test", "label": "Tooltip.test.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Tooltip.test.tsx", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_components_tooltip", "label": "Tooltip.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Tooltip.tsx", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/components/Tooltip.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_data_scientificterms", "label": "data/scientificTerms.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "data/scientificTerms.ts", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/lib/data/scientificTerms.ts", "file_type": "code", "degree": 4}, {"id": "frontend_application_lib_data_scientificterms_scientific_terms", "label": "SCIENTIFIC_TERMS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "SCIENTIFIC_TERMS", "community": 55, "community_name": "Product Detail Page", "source_file": "frontend/application/lib/data/scientificTerms.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_videos_page", "label": "videos/page.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "videos/page.tsx", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/app/videos/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_safeimage", "label": "SafeImage.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.7, "font": {"size": 12, "color": "#ffffff"}, "title": "SafeImage.tsx", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/SafeImage.tsx", "file_type": "code", "degree": 13}, {"id": "frontend_application_components_vetgallery", "label": "VetGallery.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 15.3, "font": {"size": 12, "color": "#ffffff"}, "title": "VetGallery.tsx", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 12}, {"id": "frontend_application_components_vetgallery_fallback_videos", "label": "FALLBACK_VIDEOS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "FALLBACK_VIDEOS", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VetGallery.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_videospage", "label": "VideosPage.tsx", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "VideosPage.tsx", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VideosPage.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_components_videospage_fallback_videos", "label": "FALLBACK_VIDEOS", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "FALLBACK_VIDEOS", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/components/VideosPage.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_services_videoservice", "label": "videoService.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "videoService.ts", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 6}, {"id": "frontend_application_lib_services_videoservice_videoservice", "label": "videoService", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "videoService", "community": 56, "community_name": "Video Gallery Components", "source_file": "frontend/application/lib/services/videoService.ts", "file_type": "code", "degree": 3}, {"id": "backend_package_scripts", "label": "scripts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 14}, {"id": "backend_package_scripts_build", "label": "build", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_docs_generate", "label": "docs:generate", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "docs:generate", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_format", "label": "format", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "format", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_lint", "label": "lint", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start", "label": "start", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_debug", "label": "start:debug", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start:debug", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_dev", "label": "start:dev", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start:dev", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_start_prod", "label": "start:prod", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start:prod", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test", "label": "test", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_cov", "label": "test:cov", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test:cov", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_debug", "label": "test:debug", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test:debug", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_e2e", "label": "test:e2e", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test:e2e", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_scripts_test_watch", "label": "test:watch", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "test:watch", "community": 57, "community_name": "NPM Lifecycle Scripts", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_admin_pets_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_controller", "label": "Controller", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_delete", "label": "Delete", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_get", "label": "Get", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_param", "label": "Param", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_query", "label": "Query", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_pets_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 58, "community_name": "Pet Management API", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_controller", "label": "Controller", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_get", "label": "Get", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_reports_service", "label": "reports.service.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "reports.service.ts", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "backend/src/admin/reports.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_admin_reports_service_ts_injectable", "label": "Injectable", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 59, "community_name": "Reporting Service and Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller", "label": "auth.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "auth.controller.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/auth.controller.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "label": "ApiBadRequestResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBadRequestResponse", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_ts_body", "label": "Body", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_auth_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_auth_controller_ts_post", "label": "Post", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_auth_dto_admin_login_dto", "label": "admin-login.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-login.dto.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/admin-login.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_admin_login_dto_ts_minlength", "label": "MinLength", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto", "label": "login.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "login.dto.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/login.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_dto_login_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_login_dto_ts_minlength", "label": "MinLength", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto", "label": "register.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "register.dto.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/register.dto.ts", "file_type": "code", "degree": 2}, {"id": "backend_src_auth_dto_register_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isemail", "label": "IsEmail", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEmail", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_register_dto_ts_minlength", "label": "MinLength", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "MinLength", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto", "label": "send-otp.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "send-otp.dto.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/send-otp.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_send_otp_dto_ts_matches", "label": "Matches", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Matches", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto", "label": "verify-otp.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "verify-otp.dto.ts", "community": 6, "community_name": "Authentication Controller", "source_file": "backend/src/auth/dto/verify-otp.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", "label": "IsString", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_auth_dto_verify_otp_dto_ts_matches", "label": "Matches", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Matches", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "httpcode", "label": "HttpCode", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "HttpCode", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 5}, {"id": "length", "label": "Length", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Length", "community": 6, "community_name": "Authentication Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_package_jest", "label": "jest", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jest", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 8}, {"id": "backend_package_jest_collectcoveragefrom", "label": "collectCoverageFrom", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "collectCoverageFrom", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_jest_coveragedirectory", "label": "coverageDirectory", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "coverageDirectory", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_modulefileextensions", "label": "moduleFileExtensions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleFileExtensions", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 4}, {"id": "backend_package_jest_rootdir", "label": "rootDir", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "rootDir", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_testenvironment", "label": "testEnvironment", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "testEnvironment", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_testregex", "label": "testRegex", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "testRegex", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_jest_transform", "label": "transform", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "transform", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_transform_t_j_s", "label": "^.+\\\\.(t|j)s$", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "^.+\\\\.(t|j)s$", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_json_ref_ts", "label": "ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ts", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ref_js", "label": "js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "js", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ref_json", "label": "json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "json", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "ref_t_j_s", "label": "**/*.(t|j)s", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "**/*.(t|j)s", "community": 60, "community_name": "Jest Testing Config", "source_file": "backend/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_wiki_wiki_controller", "label": "wiki/wiki.controller.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/wiki.controller.ts", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.controller.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wiki_wiki_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 61, "community_name": "Wiki Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_controller", "label": "Controller", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 61, "community_name": "Wiki Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_module", "label": "wiki.module.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki.module.ts", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_wiki_wiki_module_ts_module", "label": "Module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 61, "community_name": "Wiki Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_service", "label": "wiki/wiki.service.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/wiki.service.ts", "community": 61, "community_name": "Wiki Module and Service", "source_file": "backend/src/wiki/wiki.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_wiki_wiki_service_ts_injectable", "label": "Injectable", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 61, "community_name": "Wiki Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller", "label": "blogs/blogs.controller.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "blogs/blogs.controller.ts", "community": 62, "community_name": "Blog Module and Service", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "blogs.module.ts", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/blogs/blogs.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_blogs_blogs_module_ts_module", "label": "Module", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_service", "label": "blogs/blogs.service.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "blogs/blogs.service.ts", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/blogs/blogs.service.ts", "file_type": "code", "degree": 7}, {"id": "backend_src_blogs_blogs_service_ts_injectable", "label": "Injectable", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto", "label": "pagination.dto.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "pagination.dto.ts", "community": 62, "community_name": "Blog Module and Service", "source_file": "backend/src/common/dto/pagination.dto.ts", "file_type": "code", "degree": 17}, {"id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_controller", "label": "Controller", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_get", "label": "Get", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_blogs_blogs_controller_ts_param", "label": "Param", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_blogs_controller_ts_query", "label": "Query", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 63, "community_name": "Public Blog Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto", "label": "wholesale-apply.dto.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale-apply.dto.ts", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", "label": "IsString", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_service", "label": "wholesale.service.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale.service.ts", "community": 64, "community_name": "SMS Notification Service", "source_file": "backend/src/wholesale/wholesale.service.ts", "file_type": "code", "degree": 9}, {"id": "backend_src_wholesale_wholesale_service_ts_injectable", "label": "Injectable", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 64, "community_name": "SMS Notification Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "apiexcludecontroller", "label": "ApiExcludeController", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiExcludeController", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_metrics_controller", "label": "metrics.controller.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "metrics.controller.ts", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/src/common/metrics.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_common_metrics_controller_ts_controller", "label": "Controller", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_metrics_controller_ts_get", "label": "Get", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "", "file_type": "code", "degree": 1}, {"id": "res", "label": "Res", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Res", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_controller", "label": "app.controller.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "app.controller.ts", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.controller.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_app_controller_spec", "label": "app.controller.spec.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "app.controller.spec.ts", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.controller.spec.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_app_controller_ts_controller", "label": "Controller", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 66, "community_name": "App Health Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_controller_ts_get", "label": "Get", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 66, "community_name": "App Health Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_app_service", "label": "app.service.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "app.service.ts", "community": 66, "community_name": "App Health Controller", "source_file": "backend/src/app.service.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_service_ts_injectable", "label": "Injectable", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 66, "community_name": "App Health Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_dependencies", "label": "dependencies", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "dependencies", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 9}, {"id": "frontend_application_package_dependencies_axios", "label": "axios", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_motion", "label": "motion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "motion", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_next", "label": "next", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "next", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_react", "label": "react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_dependencies_sonner", "label": "sonner", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "sonner", "community": 67, "community_name": "Frontend UI 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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "axios", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "frontend_application_package_json_react", "label": "react", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "react", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "motion", "label": "motion", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "motion", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "next", "label": "next", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "next", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "sonner", "label": "sonner", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sonner", "community": 67, "community_name": "Frontend UI Dependencies", "source_file": "frontend/application/package.json", "file_type": "concept", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isenum", "label": "IsEnum", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsEnum", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_isstring", "label": "IsString", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_common_dto_pagination_dto_ts_type", "label": "Type", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Type", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "isint", "label": "IsInt", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsInt", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "min", "label": "Min", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Min", "community": 62, "community_name": "Blog Module and Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity", "label": "validate_integrity.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.0, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_integrity.js", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 9}, {"id": "docs_audit_validate_integrity_dispsum", "label": "dispSum", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dispSum", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_errors", "label": "errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "errors", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_invalidnewids", "label": "invalidNewIds", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "invalidNewIds", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_manifest", "label": "manifest", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "manifest", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_report", "label": "report", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "report", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_trackedfiles", "label": "trackedFiles", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "trackedFiles", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_uninspected", "label": "uninspected", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "uninspected", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_verifiedindex", "label": "verifiedIndex", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "verifiedIndex", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_integrity_warnings", "label": "warnings", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "warnings", "community": 69, "community_name": "Integrity Validation Scripts", "source_file": "docs/audit/validate_integrity.js", "file_type": "code", "degree": 1}, {"id": "backend_scripts_generate_openapi", "label": "generate-openapi.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "generate-openapi.ts", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/scripts/generate-openapi.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_app_module", "label": "app.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 35.1, "font": {"size": 12, "color": "#ffffff"}, "title": "app.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/app.module.ts", "file_type": "code", "degree": 57}, {"id": "backend_src_app_module_ts_module", "label": "Module", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_module", "label": "b2b.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/b2b/b2b.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_b2b_b2b_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_b2b_b2b_service", "label": "b2b.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "b2b.service.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/b2b/b2b.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_banners_banners_module", "label": "banners.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "banners.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/banners/banners.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_banners_banners_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_banners_banners_service", "label": "banners.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "banners.service.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/banners/banners.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_cms_cms_module", "label": "cms.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cms.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/cms/cms.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_cms_cms_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_module", "label": "ingredients.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ingredients.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/ingredients/ingredients.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_ingredients_ingredients_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_ingredients_ingredients_service", "label": "ingredients.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ingredients.service.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/ingredients/ingredients.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_prescriptions_prescriptions_module", "label": "prescriptions.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "prescriptions.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/prescriptions/prescriptions.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_prescriptions_prescriptions_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prescriptions_prescriptions_service", "label": "prescriptions.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "prescriptions.service.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/prescriptions/prescriptions.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_prisma_prisma_module", "label": "prisma.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.6, "font": {"size": 12, "color": "#ffffff"}, "title": "prisma.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/prisma/prisma.module.ts", "file_type": "code", "degree": 15}, {"id": "backend_src_prisma_prisma_module_ts_global", "label": "Global", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Global", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_prisma_prisma_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_settings_settings_module", "label": "settings.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "settings.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/settings/settings.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_settings_settings_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_module", "label": "smart-advisor.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_smart_advisor_smart_advisor_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_smart_advisor_smart_advisor_service", "label": "smart-advisor.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "smart-advisor.service.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_testimonials_testimonials_module", "label": "testimonials.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "testimonials.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/testimonials/testimonials.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_testimonials_testimonials_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_testimonials_testimonials_service", "label": "testimonials.service.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "testimonials.service.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/testimonials/testimonials.service.ts", "file_type": "code", "degree": 5}, {"id": "backend_src_videos_videos_module", "label": "videos.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "videos.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/videos/videos.module.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_videos_videos_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wholesale_wholesale_module", "label": "wholesale.module.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "wholesale.module.ts", "community": 7, "community_name": "NestJS Application Modules", "source_file": "backend/src/wholesale/wholesale.module.ts", "file_type": "code", "degree": 8}, {"id": "backend_src_wholesale_wholesale_module_ts_module", "label": "Module", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Module", "community": 7, "community_name": "NestJS Application Modules", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_test_app_e2e_spec", "label": "app.e2e-spec.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "app.e2e-spec.ts", "community": 65, "community_name": "OpenAPI and Metrics", "source_file": "backend/test/app.e2e-spec.ts", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package", "label": "admin-panel/package.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "admin-panel/package.json", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 7}, {"id": "frontend_admin_panel_package_name", "label": "name", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_private", "label": "private", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts", "label": "scripts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 5}, {"id": "frontend_admin_panel_package_scripts_build", "label": "build", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts_dev", "label": "dev", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts_lint", "label": "lint", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_scripts_preview", "label": "preview", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "preview", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_type", "label": "type", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_package_version", "label": "version", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 70, "community_name": "Admin Panel Package Config", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_pages_reports", "label": "Reports.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Reports.tsx", "community": 71, "community_name": "Analytics and Report Charts", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 14}, {"id": "frontend_admin_panel_src_pages_reports_colors", "label": "COLORS", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "COLORS", "community": 71, "community_name": "Analytics and Report Charts", "source_file": "frontend/admin-panel/src/pages/Reports.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_admin_panel_src_routes_adminroutes_reports", "label": "Reports", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Reports", "community": 71, "community_name": "Analytics and Report Charts", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "file_type": "code", "degree": 2}, {"id": "ai_agency_orchestrate", "label": "orchestrate.py", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "orchestrate.py", "community": 72, "community_name": "Task Orchestration Scripts", "source_file": ".ai_agency/orchestrate.py", "file_type": "code", "degree": 8}, {"id": "backend_package", "label": "backend/package.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "backend/package.json", "community": 73, "community_name": "Backend Package Config", "source_file": "backend/package.json", "file_type": "code", "degree": 11}, {"id": "backend_package_author", "label": "author", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "author", "community": 73, "community_name": "Backend Package Config", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "description", "community": 73, "community_name": "Backend Package Config", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "license", "community": 73, "community_name": "Backend Package Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_package_name", "label": "name", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 73, "community_name": "Backend Package Config", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 73, "community_name": "Backend Package Config", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "seed", "community": 73, "community_name": "Backend Package Config", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 73, "community_name": "Backend Package Config", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 73, "community_name": "Backend Package Config", "source_file": "backend/package.json", "file_type": "code", "degree": 1}, {"id": "backend_src_admin_blogs_service", "label": "admin/blogs.service.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "admin/blogs.service.ts", "community": 25, "community_name": "Admin Blog Service", "source_file": "backend/src/admin/blogs.service.ts", "file_type": "code", "degree": 6}, {"id": "backend_src_admin_blogs_service_ts_injectable", "label": "Injectable", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 25, "community_name": "Admin Blog Service", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_errorboundary", "label": "ErrorBoundary.tsx", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorBoundary.tsx", "community": 75, "community_name": "React Error Boundary", "source_file": "frontend/application/components/ErrorBoundary.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_package", "label": "application/package.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "application/package.json", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 6}, {"id": "frontend_application_package_name", "label": "name", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_private", "label": "private", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "private", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts", "label": "scripts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 5}, {"id": "frontend_application_package_scripts_build", "label": "build", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts_dev", "label": "dev", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts_lint", "label": "lint", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "lint", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_scripts_start", "label": "start", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "start", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "frontend_application_package_version", "label": "version", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 76, "community_name": "Application Package Config", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", "label": "ApiNotFoundResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiNotFoundResponse", "community": 77, "community_name": "Generic Resource Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_apiokresponse", "label": "ApiOkResponse", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOkResponse", "community": 77, "community_name": "Generic Resource Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 77, "community_name": "Generic Resource Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_ts_get", "label": "Get", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 77, "community_name": "Generic Resource Controller", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_wiki_wiki_controller_ts_param", "label": "Param", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 77, "community_name": "Generic Resource Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_wiki_wiki_controller_ts_query", "label": "Query", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 77, "community_name": "Generic Resource Controller", "source_file": "", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_error", "label": "error.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "error.tsx", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/app/error.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_not_found", "label": "not-found.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "not-found.tsx", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/app/not-found.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_components_errorpages", "label": "ErrorPages.tsx", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "ErrorPages.tsx", "community": 78, "community_name": "Error and Not Found Pages", "source_file": "frontend/application/components/ErrorPages.tsx", "file_type": "code", "degree": 4}, {"id": "gitea_scripts_with_vpn", "label": "with-vpn.sh", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.6, "font": {"size": 0, "color": "#ffffff"}, "title": "with-vpn.sh", "community": 79, "community_name": "VPN Utility Scripts", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 6}, {"id": "gitea_scripts_with_vpn_cleanup", "label": "cleanup()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "cleanup()", "community": 79, "community_name": "VPN Utility Scripts", "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": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "log()", "community": 79, "community_name": "VPN Utility Scripts", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 5}, {"id": "gitea_scripts_with_vpn_sh__entry", "label": "with-vpn.sh script", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "with-vpn.sh script", "community": 79, "community_name": "VPN Utility Scripts", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 3}, {"id": "gitea_scripts_with_vpn_start_vpn", "label": "start_vpn()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "start_vpn()", "community": 79, "community_name": "VPN Utility Scripts", "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": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "stop_vpn()", "community": 79, "community_name": "VPN Utility Scripts", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 3}, {"id": "gitea_scripts_with_vpn_vpn_is_up", "label": "vpn_is_up()", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "vpn_is_up()", "community": 79, "community_name": "VPN Utility Scripts", "source_file": ".gitea/scripts/with-vpn.sh", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_dto_create_video_dto", "label": "create-video.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "create-video.dto.ts", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/dto/create-video.dto.ts", "file_type": "code", "degree": 4}, {"id": "backend_src_videos_dto_create_video_dto_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isnotempty", "label": "IsNotEmpty", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsNotEmpty", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_create_video_dto_ts_isstring", "label": "IsString", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsString", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_get_videos_query_dto", "label": "get-videos-query.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "get-videos-query.dto.ts", "community": 8, "community_name": "Video Management DTOs", "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_ts_apipropertyoptional", "label": "ApiPropertyOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiPropertyOptional", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", "label": "IsBoolean", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsBoolean", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", "label": "IsOptional", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "IsOptional", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller", "label": "videos.controller.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "videos.controller.ts", "community": 8, "community_name": "Video Management DTOs", "source_file": "backend/src/videos/videos.controller.ts", "file_type": "code", "degree": 10}, {"id": "backend_src_videos_videos_controller_ts_apibearerauth", "label": "ApiBearerAuth", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiBearerAuth", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_controller_ts_apioperation", "label": "ApiOperation", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiOperation", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 5}, {"id": "backend_src_videos_videos_controller_ts_apiquery", "label": "ApiQuery", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiQuery", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_apitags", "label": "ApiTags", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiTags", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_body", "label": "Body", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Body", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_ts_controller", "label": "Controller", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Controller", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_delete", "label": "Delete", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Delete", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_get", "label": "Get", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Get", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 2}, {"id": "backend_src_videos_videos_controller_ts_param", "label": "Param", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Param", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_controller_ts_post", "label": "Post", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Post", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_put", "label": "Put", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Put", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_query", "label": "Query", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Query", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_src_videos_videos_controller_ts_useguards", "label": "UseGuards", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UseGuards", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 3}, {"id": "backend_src_videos_videos_service_ts_injectable", "label": "Injectable", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Injectable", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "transform", "label": "Transform", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Transform", "community": 8, "community_name": "Video Management DTOs", "source_file": "", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli", "label": "nest-cli.json", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "nest-cli.json", "community": 80, "community_name": "NestJS CLI Config", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 4}, {"id": "backend_nest_cli_collection", "label": "collection", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "collection", "community": 80, "community_name": "NestJS CLI Config", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_compileroptions", "label": "compilerOptions", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 80, "community_name": "NestJS CLI Config", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 2}, {"id": "backend_nest_cli_compileroptions_deleteoutdir", "label": "deleteOutDir", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "deleteOutDir", "community": 80, "community_name": "NestJS CLI Config", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_schema", "label": "$schema", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "$schema", "community": 80, "community_name": "NestJS CLI Config", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_nest_cli_sourceroot", "label": "sourceRoot", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "sourceRoot", "community": 80, "community_name": "NestJS CLI Config", "source_file": "backend/nest-cli.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed", "label": "tsconfig.seed.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "tsconfig.seed.json", "community": 81, "community_name": "Seed TypeScript Config", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions", "label": "compilerOptions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "compilerOptions", "community": 81, "community_name": "Seed TypeScript Config", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 5}, {"id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", "label": "esModuleInterop", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "esModuleInterop", "community": 81, "community_name": "Seed TypeScript Config", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_module", "label": "module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 81, "community_name": "Seed TypeScript Config", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 81, "community_name": "Seed TypeScript Config", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 81, "community_name": "Seed TypeScript Config", "source_file": "backend/prisma/tsconfig.seed.json", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers", "label": "open-browsers.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "open-browsers.js", "community": 83, "community_name": "Browser Utility Scripts", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 5}, {"id": "scripts_open_browsers_exec", "label": "{ exec }", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "{ exec }", "community": 83, "community_name": "Browser Utility Scripts", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers_http", "label": "http", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "http", "community": 83, "community_name": "Browser Utility Scripts", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 1}, {"id": "scripts_open_browsers_urls", "label": "URLS", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "URLS", "community": 83, "community_name": "Browser Utility Scripts", "source_file": "scripts/open-browsers.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev", "label": "start-dev.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "start-dev.js", "community": 84, "community_name": "Dev Server Startup", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 4}, {"id": "scripts_start_dev_backend", "label": "backend", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "backend", "community": 84, "community_name": "Dev Server Startup", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_http", "label": "http", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "http", "community": 84, "community_name": "Dev Server Startup", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "scripts_start_dev_spawn", "label": "{ spawn }", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "{ spawn }", "community": 84, "community_name": "Dev Server Startup", "source_file": "scripts/start-dev.js", "file_type": "code", "degree": 1}, {"id": "backend_src_common_schemas_paginated_response_schema", "label": "paginated-response.schema.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "paginated-response.schema.ts", "community": 86, "community_name": "Pagination API Schemas", "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", "label": "ApiProperty", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "ApiProperty", "community": 86, "community_name": "Pagination API Schemas", "source_file": "", "file_type": "code", "degree": 2}, {"id": "docs_audit_rebuild_honest_ledger", "label": "rebuild_honest_ledger.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "rebuild_honest_ledger.js", "community": 88, "community_name": "Ledger Rebuild Scripts", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 4}, {"id": "docs_audit_rebuild_honest_ledger_evidencelist", "label": "evidenceList", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "evidenceList", "community": 88, "community_name": "Ledger Rebuild Scripts", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger_ledger", "label": "ledger", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ledger", "community": 88, "community_name": "Ledger Rebuild Scripts", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger_mandatorymap", "label": "mandatoryMap", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "mandatoryMap", "community": 88, "community_name": "Ledger Rebuild Scripts", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_rebuild_honest_ledger_mandatoryscope", "label": "mandatoryScope", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "mandatoryScope", "community": 88, "community_name": "Ledger Rebuild Scripts", "source_file": "docs/audit/rebuild_honest_ledger.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade", "label": "validate_evidence_grade.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "validate_evidence_grade.js", "community": 89, "community_name": "Evidence Validation Scripts", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 4}, {"id": "docs_audit_validate_evidence_grade_activefiles", "label": "activeFiles", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "activeFiles", "community": 89, "community_name": "Evidence Validation Scripts", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade_errors", "label": "errors", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "errors", "community": 89, "community_name": "Evidence Validation Scripts", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade_validationoutput", "label": "validationOutput", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "validationOutput", "community": 89, "community_name": "Evidence Validation Scripts", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "docs_audit_validate_evidence_grade_warnings", "label": "warnings", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "warnings", "community": 89, "community_name": "Evidence Validation Scripts", "source_file": "docs/audit/validate_evidence_grade.js", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_catalog_catalogclient", "label": "CatalogClient.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CatalogClient.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "file_type": "code", "degree": 10}, {"id": "frontend_application_app_catalog_page", "label": "catalog/page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "catalog/page.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/catalog/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_catalog_page_metadata", "label": "metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/catalog/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_search_page", "label": "search/page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "search/page.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/search/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_search_page_metadata", "label": "metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/search/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_sitemap", "label": "sitemap.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "sitemap.ts", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/sitemap.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_wiki_page", "label": "wiki/page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/page.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/wiki/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_wiki_page_metadata", "label": "metadata", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/app/wiki/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_components_blogpage", "label": "BlogPage.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.1, "font": {"size": 0, "color": "#ffffff"}, "title": "BlogPage.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/components/BlogPage.tsx", "file_type": "code", "degree": 7}, {"id": "frontend_application_components_ingredientwiki", "label": "IngredientWiki.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.9, "font": {"size": 12, "color": "#ffffff"}, "title": "IngredientWiki.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/components/IngredientWiki.tsx", "file_type": "code", "degree": 11}, {"id": "frontend_application_components_searchresultspage", "label": "SearchResultsPage.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SearchResultsPage.tsx", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/components/SearchResultsPage.tsx", "file_type": "code", "degree": 8}, {"id": "frontend_application_lib_data_products", "label": "products.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 20.1, "font": {"size": 12, "color": "#ffffff"}, "title": "products.ts", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 23}, {"id": "frontend_application_lib_data_products_ingredients_wiki", "label": "INGREDIENTS_WIKI", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "INGREDIENTS_WIKI", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_lib_data_products_products", "label": "PRODUCTS", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "PRODUCTS", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/data/products.ts", "file_type": "code", "degree": 5}, {"id": "frontend_application_lib_services_productservice", "label": "productService.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 21.0, "font": {"size": 12, "color": "#ffffff"}, "title": "productService.ts", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 25}, {"id": "frontend_application_lib_services_productservice_category_slug_to_name", "label": "CATEGORY_SLUG_TO_NAME", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "CATEGORY_SLUG_TO_NAME", "community": 9, "community_name": "Public Catalog Pages", "source_file": "frontend/application/lib/services/productService.ts", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_page", "label": "blog/page.tsx", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.2, "font": {"size": 0, "color": "#ffffff"}, "title": "blog/page.tsx", "community": 90, "community_name": "Blog Listing Page", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 5}, {"id": "frontend_application_app_blog_page_metadata", "label": "metadata", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "metadata", "community": 90, "community_name": "Blog Listing Page", "source_file": "frontend/application/app/blog/page.tsx", "file_type": "code", "degree": 1}, {"id": "frontend_application_app_blog_slug_page", "label": "blog/[slug]/page.tsx", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "blog/[slug]/page.tsx", "community": 91, "community_name": "Blog Post Detail Page", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 4}, {"id": "frontend_application_app_blog_slug_page_revalidate", "label": "revalidate", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "revalidate", "community": 91, "community_name": "Blog Post Detail Page", "source_file": "frontend/application/app/blog/[slug]/page.tsx", "file_type": "code", "degree": 1}, {"id": "backend_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 92, "community_name": "Node Type Definitions", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 92, "community_name": "Node Type Definitions", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 92, "community_name": "Node Type Definitions", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 92, "community_name": "Node Type Definitions", "source_file": "backend/package.json", "file_type": "concept", "degree": 3}, {"id": "backend_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 93, "community_name": "TypeScript Language", "source_file": "backend/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_admin_panel_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 93, "community_name": "TypeScript Language", "source_file": "frontend/admin-panel/package.json", "file_type": "code", "degree": 2}, {"id": "frontend_application_package_devdependencies_typescript", "label": "typescript", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 93, "community_name": "TypeScript Language", "source_file": "frontend/application/package.json", "file_type": "code", "degree": 2}, {"id": "backend_package_json_typescript", "label": "typescript", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 93, "community_name": "TypeScript Language", "source_file": "backend/package.json", "file_type": "concept", "degree": 3}, {"id": "backend_prisma_seed_ui_texts", "label": "seed-ui-texts.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-ui-texts.ts", "community": 94, "community_name": "UI Text Seeding", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_ui_texts_prisma", "label": "prisma", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 94, "community_name": "UI Text Seeding", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "UI_TEXTS", "community": 94, "community_name": "UI Text Seeding", "source_file": "backend/prisma/seed-ui-texts.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_wiki", "label": "seed-wiki.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "seed-wiki.ts", "community": 95, "community_name": "Wiki Terms Seeding", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 3}, {"id": "backend_prisma_seed_wiki_prisma", "label": "prisma", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "prisma", "community": 95, "community_name": "Wiki Terms Seeding", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 1}, {"id": "backend_prisma_seed_wiki_wiki_terms", "label": "WIKI_TERMS", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "WIKI_TERMS", "community": 95, "community_name": "Wiki Terms Seeding", "source_file": "backend/prisma/seed-wiki.ts", "file_type": "code", "degree": 1}, {"id": "backend_src_blogs_dto_create_blog_dto", "label": "create-blog.dto.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "create-blog.dto.ts", "community": 96, "community_name": "Blog Management DTOs", "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update-blog.dto.ts", "community": 96, "community_name": "Blog Management DTOs", "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_home_dto_create_home_dto", "label": "create-home.dto.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "create-home.dto.ts", "community": 97, "community_name": "Home Management DTOs", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update-home.dto.ts", "community": 97, "community_name": "Home Management DTOs", "source_file": "backend/src/home/dto/update-home.dto.ts", "file_type": "code", "degree": 3}, {"id": "backend_src_wiki_dto_create_wiki_dto", "label": "create-wiki.dto.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "create-wiki.dto.ts", "community": 98, "community_name": "Wiki Management DTOs", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "update-wiki.dto.ts", "community": 98, "community_name": "Wiki Management DTOs", "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "file_type": "code", "degree": 3}, {"id": "frontend_application_app_wiki_slug_page", "label": "wiki/[slug]/page.tsx", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/[slug]/page.tsx", "community": 99, "community_name": "Wiki Page Routing", "source_file": "frontend/application/app/wiki/[slug]/page.tsx", "file_type": "code", "degree": 3}, {"id": "frontend_application_public_fonts_vazirmatn_v33_003_authors", "label": "Vazirmatn Authors", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Authors", "community": 87, "community_name": "Font Assets and Licenses", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt", "file_type": "document", "degree": 1}, {"id": "database_schema_products", "label": "Products Table", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Products Table", "community": 108, "community_name": "Product and Cart Components", "source_file": "DATABASE_SCHEMA.md", "file_type": "code", "degree": 2}, {"id": "src_store_cartstore", "label": "Cart Store (Zustand)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Cart Store (Zustand)", "community": 108, "community_name": "Product and Cart Components", "source_file": "src/store/cartStore.ts", "file_type": "code", "degree": 1}, {"id": "readme_smartadvisor", "label": "Smart Advisor Component", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Smart Advisor Component", "community": 108, "community_name": "Product and Cart Components", "source_file": "README.md", "file_type": "concept", "degree": 1}, {"id": "docs_audit_adr_auth_001", "label": "ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management", "community": 109, "community_name": "Auth Architecture and Planning", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Master Task Backlog (Phase 3.3)", "community": 109, "community_name": "Auth Architecture and Planning", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Phase 3 Master Execution Plan", "community": 109, "community_name": "Auth Architecture and Planning", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazir Font", "community": 126, "community_name": "Typography and Font Assets", "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.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font README", "community": 126, "community_name": "Typography and Font Assets", "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.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font Sample", "community": 126, "community_name": "Typography and Font Assets", "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": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "User Roles and Capabilities", "community": 146, "community_name": "User Profile Management", "source_file": "docs/02-user-guide.md", "file_type": "document", "degree": 1}, {"id": "backend_uploads_1781288429353_508765350", "label": "User Profile Photo", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "User Profile Photo", "community": 146, "community_name": "User Profile Management", "source_file": "backend/uploads/1781288429353-508765350.jpg", "file_type": "image", "degree": 1}, {"id": "database_schema_pets", "label": "Pets Table", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Pets Table", "community": 147, "community_name": "Pet Store State", "source_file": "DATABASE_SCHEMA.md", "file_type": "code", "degree": 1}, {"id": "src_store_usepetstore", "label": "Pet Store (Zustand)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Pet Store (Zustand)", "community": 147, "community_name": "Pet Store State", "source_file": "src/store/usePetStore.ts", "file_type": "code", "degree": 1}, {"id": "database_schema_users", "label": "Users Table", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Users Table", "community": 148, "community_name": "User Database and Infrastructure", "source_file": "DATABASE_SCHEMA.md", "file_type": "code", "degree": 1}, {"id": "docker_backend_prod", "label": "Backend Production Container", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Backend Production Container", "community": 148, "community_name": "User Database and Infrastructure", "source_file": "docker-compose.yml", "file_type": "code", "degree": 1}, {"id": "docs_audit_cross_boundary_dependencies", "label": "Cross Boundary Dependencies & Backend Architecture Specification", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Cross Boundary Dependencies & Backend Architecture Specification", "community": 149, "community_name": "API and Frontend Specifications", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Comprehensive Frontend Integration Requirements & API Contract", "community": 149, "community_name": "API and Frontend Specifications", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Next.js Agent Rules & Brand Guidelines", "community": 150, "community_name": "Brand and Agent Guidelines", "source_file": "frontend/application/AGENTS.md", "file_type": "document", "degree": 1}, {"id": "image_pharma_lab", "label": "Pharma Quality Lab Image", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Pharma Quality Lab Image", "community": 150, "community_name": "Brand and Agent Guidelines", "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", "file_type": "image", "degree": 1}, {"id": "backend_integration_logout", "label": "User Logout API", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "User Logout API", "community": 159, "community_name": "User Logout Endpoint", "source_file": "BACKEND_INTEGRATION.md", "file_type": "code", "degree": 0}, {"id": "canina_pharma_gmbh", "label": "Canina Pharma GmbH", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Canina Pharma GmbH", "community": 160, "community_name": "Company Profile", "source_file": "canina.md", "file_type": "concept", "degree": 0}, {"id": "docs_01_introduction_canina_iran", "label": "Canina Iran Project Introduction", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Canina Iran Project Introduction", "community": 161, "community_name": "Project Introduction", "source_file": "docs/01-introduction.md", "file_type": "document", "degree": 0}, {"id": "docs_audit_frontend_route_map", "label": "Frontend & Admin Architecture Route Map Specification", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Frontend & Admin Architecture Route Map Specification", "community": 162, "community_name": "Architecture Route Map", "source_file": "docs/audit/frontend-route-map.md", "file_type": "document", "degree": 0}, {"id": "docs_backlog_tasks", "label": "Project Backlog and Tasks", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Project Backlog and Tasks", "community": 163, "community_name": "Project Task Backlog", "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": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sahel Font Sample", "community": 168, "community_name": "Sahel Font Samples", "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": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font Changelog", "community": 169, "community_name": "Shabnam Font History", "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": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Changelog", "community": 170, "community_name": "Vazirmatn Font History", "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": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sahel Font Variable Sample", "community": 172, "community_name": "Variable Font Samples", "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": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Shabnam Font Sample", "community": 173, "community_name": "Shabnam Font Preview", "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": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Production Docker Compose", "community": 174, "community_name": "Production Docker Setup", "source_file": "scripts/compose.prod.yml", "file_type": "code", "degree": 0}, {"id": "scripts_compose_stage", "label": "Staging Docker Compose", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Staging Docker Compose", "community": 175, "community_name": "Staging Docker Setup", "source_file": "scripts/compose.stage.yml", "file_type": "code", "degree": 0}, {"id": "backend_integration_login", "label": "User Login API", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "User Login API", "community": 85, "community_name": "Architecture and Security Docs", "source_file": "BACKEND_INTEGRATION.md", "file_type": "code", "degree": 1}, {"id": "src_store_userstore", "label": "UserStore", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.3, "font": {"size": 0, "color": "#ffffff"}, "title": "UserStore", "community": 85, "community_name": "Architecture and Security Docs", "source_file": "src/store/userStore.ts", "file_type": "code", "degree": 3}, {"id": "docs_03_developer_guide_standards", "label": "Developer Standards and Architecture", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Developer Standards and Architecture", "community": 85, "community_name": "Architecture and Security Docs", "source_file": "docs/03-developer-guide.md", "file_type": "document", "degree": 1}, {"id": "docs_audit_05_architectural_audit_findings", "label": "Architectural Audit Findings", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.9, "font": {"size": 0, "color": "#ffffff"}, "title": "Architectural Audit Findings", "community": 85, "community_name": "Architecture and Security Docs", "source_file": "docs/audit/05-architectural-audit.md", "file_type": "document", "degree": 2}, {"id": "docs_audit_10_security_audit_findings", "label": "Security Audit Findings", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Security Audit Findings", "community": 85, "community_name": "Architecture and Security Docs", "source_file": "docs/audit/10-security-audit.md", "file_type": "document", "degree": 1}, {"id": "dejavu_sans", "label": "DejaVu Sans Font", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "DejaVu Sans Font", "community": 87, "community_name": "Font Assets and Licenses", "source_file": "", "file_type": "concept", "degree": 1}, {"id": "roboto_font", "label": "Roboto Font", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "Roboto Font", "community": 87, "community_name": "Font Assets and Licenses", "source_file": "", "file_type": "concept", "degree": 1}, {"id": "frontend_application_public_fonts_vazirmatn_v33_003_ofl", "label": "SIL Open Font License (OFL)", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.4, "font": {"size": 0, "color": "#ffffff"}, "title": "SIL Open Font License (OFL)", "community": 87, "community_name": "Font Assets and Licenses", "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": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.8, "font": {"size": 0, "color": "#ffffff"}, "title": "Vazirmatn Font README", "community": 87, "community_name": "Font Assets and Licenses", "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", "file_type": "document", "degree": 4}];
|
|
const RAW_EDGES = [{"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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_service_couponinput", "label": "imports", "title": "imports [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_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_couponinput", "label": "references", "title": "references [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_controller", "to": "backend_src_admin_admin_service_productinput", "label": "imports", "title": "imports [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_productinput", "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_productinput", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_admin_service", "to": "backend_src_admin_admin_service_productinput", "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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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", "to": "backend_src_pets_pets_service_reminderinput", "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_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_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_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_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_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_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_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_lib_types", "to": "frontend_application_lib_types_navigationtarget", "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": "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_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_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_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_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_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_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_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_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_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_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_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_mediaselectorprops", "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_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_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_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_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_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_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_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_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_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_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": "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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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": "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_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_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_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_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_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_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_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_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_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_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_vitest_setup", "to": "frontend_application_vitest_setup_mockintersectionobserver", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_lib_types", "to": "frontend_application_lib_types_testimonial", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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", "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_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_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_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_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_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_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_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", "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_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_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_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_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_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", "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_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_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_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_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_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_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_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_service_prismaservice", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_ts_injectable", "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_redisservice", "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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_updateuitext", "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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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": "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_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_dashboarddata", "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_adminrouteconfig", "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_module_adminmodule", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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", "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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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": "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_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_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_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_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_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": "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_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_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_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_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": "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_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_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_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_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_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_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_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_adminloginpayload", "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_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_authstate", "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_types_admin_b2binquiry", "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_b2binquiry", "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_types_admin_financialsettings", "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_financialsettings", "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_types_admin_partneraccount", "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_partneraccount", "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_types_admin_product", "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_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_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_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_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_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_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_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_verifyotppayload", "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_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_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_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_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_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_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": "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_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_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", "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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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", "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_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_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", "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_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_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_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_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", "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_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_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_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_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_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_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", "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_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_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_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_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": "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_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_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_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_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_wikiterm", "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_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", "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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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", "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_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_createsmartadvisorruledto", "label": "contains", "title": "contains [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_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_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_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_createsmartadvisorruledto", "to": "isuuid", "label": "references", "title": "references [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_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_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", "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_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_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_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_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_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_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_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_isstring", "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_blogs_controller_blogscontroller", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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": "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_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_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_coupontarget", "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_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": "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_spec", "to": "backend_src_orders_orders_service_ordersservice", "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_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_orderitem", "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_userrecord", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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_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_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_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_testimonialitem", "label": "contains", "title": "contains [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_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_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": "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_service_wikiservice", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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_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_ts_injectable", "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_sortorder", "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_controller_blogscontroller", "label": "contains", "title": "contains [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_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_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_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_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_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_service_wholesaleservice", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_blogsservice_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_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_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_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_type", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_common_dto_pagination_dto_paginationdto", "to": "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": "min", "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_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_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_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_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", "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", "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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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": "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_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_topcouponitem", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_blogs_service", "to": "backend_src_admin_blogs_service_blogquery", "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_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_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_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_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_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_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_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_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_ts_injectable", "label": "references", "title": "references [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_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_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": "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_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_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_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_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": "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_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", "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_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_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_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": "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_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": "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_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_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": "frontend_application_components_blogpage", "to": "frontend_application_components_blogpage_blogpost", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_services_productservice_backendproduct", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_lib_types", "to": "frontend_application_lib_types_ingredient", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_getsettings", "to": "backend_src_admin_admin_service_adminservice_getsettings", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_updatesettings", "to": "backend_src_admin_admin_service_adminservice_updatesettings", "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_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_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_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_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_service_adminservice_updateuserrole", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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_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_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_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_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_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_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_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_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_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_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_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_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_apibadrequestresponse", "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_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_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_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_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_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_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_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_query", "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_apinotfoundresponse", "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_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_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_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_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_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_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_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_delete", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_create", "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": "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_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_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_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_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_clientlayout", "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_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_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_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_app_clientlayout", "to": "frontend_application_components_b2bportal_b2bportal", "label": "imports", "title": "imports [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_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_app_clientlayout", "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_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_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_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_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_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_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_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_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_app_clientlayout", "to": "frontend_application_components_loginmodal_loginmodal", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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_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_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_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": "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_custom", "to": "backend_prisma_seed_custom_main", "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_checkout", "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_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_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_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_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_utils_topersian", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_catalog_catalogclient", "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_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_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_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_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_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_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_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_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_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_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_statcounter", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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_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_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_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_topupmodal_topupmodal", "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_topupmodal_topupmodal", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_utils_cn", "label": "calls", "title": "calls [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_lib_utils_topersian", "label": "imports", "title": "imports [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_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_lib_utils_topersian", "label": "calls", "title": "calls [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_lib_utils_topersian", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_users", "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_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_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_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_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_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_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_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_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": "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_service_productsservice_updatedosageconfig", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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_components_contactformclient_contactformclient", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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_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_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_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_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_enamadbadge", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_vetgallery", "to": "frontend_application_lib_store_settingsstore_usesettingsstore", "label": "calls", "title": "calls [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_updateuitext", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_updateuitext", "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_updateuitext", "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_updateuitext", "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_updateuitext", "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_updateuitext", "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_updateuitext", "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_updateuitext", "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_updateuitext", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_query", "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_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_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_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_put", "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_service_categoriesservice_updatecategory", "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_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_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_body", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_uploadfile", "to": "uploadedfile", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_src_admin_media_controller_mediacontroller_uploadfile", "to": "useinterceptors", "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_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_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_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_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_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_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_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_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_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_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_param", "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_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_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_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_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_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_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_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_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_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_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_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_patch", "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_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": "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_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_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_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_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_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_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": "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_orders_orders_service_ordersservice_create", "to": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", "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_services_sms_service_smsservice_sendotp", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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_contact_contact_service_contactservice_submitcontactform", "to": "backend_src_common_services_sms_service_smsservice_sendpatternsms", "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_sendpatternsms", "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_sendshippingnotification", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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_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_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_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_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_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_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_get", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_patch", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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": "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_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_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_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_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_sidebar", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_usepetstore_usepetstore", "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_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_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_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_main", "to": "backend_src_main_bootstrap", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_service_contactservice_updatesubmissionstatus", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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": "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_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_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_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_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_videos", "to": "frontend_admin_panel_src_pages_videos_fetchvideoslist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_src_pages_videos_videos", "to": "frontend_admin_panel_src_pages_videos_fetchvideoslist", "label": "calls", "title": "calls [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_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_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": "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_get", "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_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_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_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_put", "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_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_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_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_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_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_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": "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_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_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_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_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_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_coupons", "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_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": "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_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_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_service_homeservice_gethomedata", "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_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_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_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_body", "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_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_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_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_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_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_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_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_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_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_findone", "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_apiokresponse", "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_apioperation", "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_get", "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_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_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_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_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_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_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_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_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_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_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_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", "to": "backend_prisma_seed_main", "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_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", "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_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_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_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", "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_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_slugify", "label": "calls", "title": "calls [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_slugify", "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_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_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_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_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_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_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_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_archivepage", "label": "imports", "title": "imports [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_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_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_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_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_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_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_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_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_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_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_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_productpage", "label": "imports", "title": "imports [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_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_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", "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_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", "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_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_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_catalog_catalogclient", "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_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_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_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_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_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_safeimage_safeimage", "label": "imports", "title": "imports [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_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_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_components_videospage", "to": "frontend_application_components_videospage_videospage", "label": "contains", "title": "contains [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_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_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_get", "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_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_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_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_service_reportsservice_getdashboardreports", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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_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_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_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_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_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": "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_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_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_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_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": "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": "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_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_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_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_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": "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": "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_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_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_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_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": "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": "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_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_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_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_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": "httpcode", "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_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_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_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_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_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_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_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_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_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": "res", "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_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_scripts_generate_openapi", "to": "backend_scripts_generate_openapi_generateopenapi", "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_reports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"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_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_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", "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_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_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", "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_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_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": "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_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_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", "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_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_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_unblock", "label": "indirect_call", "title": "indirect_call [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"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": "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_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_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_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_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_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_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_param", "label": "references", "title": "references [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_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_notfoundpage", "label": "imports", "title": "imports [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_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_components_errorpages", "to": "frontend_application_components_errorpages_servererrorpage", "label": "contains", "title": "contains [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_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_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_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_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_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_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_get", "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_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_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_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_param", "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_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_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_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_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_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_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_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_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_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_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_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_put", "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_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_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": "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_checkandopen", "to": "scripts_open_browsers_openurl", "label": "calls", "title": "calls [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_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": "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": "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_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_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_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_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_ingredientwiki", "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_ingredientwiki", "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_searchresultspage", "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_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_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_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_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", "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_components_blogpage_blogpage", "label": "imports", "title": "imports [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_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_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", "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_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", "to": "frontend_application_app_blog_slug_page_getblog", "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_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_main", "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_generatemetadata", "label": "contains", "title": "contains [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", "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_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", "to": "frontend_application_app_wiki_slug_page_wikitermpage", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_controller", "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_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_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_pets_pets_module", "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", "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_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_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": "frontend_application_app_clientlayout", "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", "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", "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", "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_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_loginmodal", "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", "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", "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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_utils", "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_components_cartdrawer", "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_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_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_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_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_utils", "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_components_header", "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", "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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_useuserstore", "label": "contains", "title": "contains [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_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_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_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_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_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_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_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": "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": "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_eslint_js", "to": "backend_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", "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_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", "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_typescript_eslint", "to": "backend_package_json_typescript_eslint", "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_typescript_eslint", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_admin_panel_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_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_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_prisma", "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_prisma", "to": "prisma", "label": "imports", "title": "imports [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_node_modules", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "prisma", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "backend_tsconfig_build_exclude", "to": "ref_dist", "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": "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": "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": "ref_esnext", "label": "extends", "title": "extends [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_tsconfig_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": "frontend_application_tsconfig_exclude", "to": "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_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": "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_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": "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_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_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_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", "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_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_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_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", "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_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_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_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_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_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_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_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_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_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_app_catalog_catalogclient", "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", "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_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_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_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_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_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_components_deleteconfirmmodal", "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", "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", "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_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_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_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_components_topupmodal", "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", "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", "label": "imports_from", "title": "imports_from [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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_application_app_about_page", "to": "frontend_application_app_about_page_metadata", "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_metadata", "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": "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_bcryptjs", "to": "bcryptjs", "label": "imports", "title": "imports [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_helmet", "to": "helmet", "label": "imports", "title": "imports [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_js_yaml", "to": "js_yaml", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_users", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_testimonialsmanager", "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_base_domain", "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_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": "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_nestjs_core", "to": "nestjs_core", "label": "imports", "title": "imports [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_nestjs_jwt", "to": "nestjs_jwt", "label": "imports", "title": "imports [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_nestjs_swagger", "to": "nestjs_swagger", "label": "imports", "title": "imports [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_nestjs_throttler", "to": "nestjs_throttler", "label": "imports", "title": "imports [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_passport_jwt", "to": "passport_jwt", "label": "imports", "title": "imports [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_prisma_client", "to": "prisma_client", "label": "imports", "title": "imports [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_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_nestjs_cli", "label": "contains", "title": "contains [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", "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_nestjs_testing", "to": "nestjs_testing", "label": "imports", "title": "imports [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_ts_jest", "to": "ts_jest", "label": "imports", "title": "imports [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_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_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_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_products_products_module", "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_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_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", "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_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_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_prisma_prisma_service", "label": "imports_from", "title": "imports_from [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_types_bcrypt", "to": "types_bcrypt", "label": "imports", "title": "imports [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_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", "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_types_supertest", "to": "types_supertest", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_app_contact_page", "to": "frontend_application_app_contact_page_metadata", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_postcss_config", "to": "frontend_application_postcss_config_config", "label": "contains", "title": "contains [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": "start", "to": "start_sh__entry", "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_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_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_schematics", "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_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_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_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_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_typescript", "label": "contains", "title": "contains [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_eslintrc", "to": "eslint_eslintrc", "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_jest", "to": "jest", "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_prettier", "to": "prettier", "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_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_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_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": "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_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_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_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_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_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_page", "to": "frontend_application_app_page_metadata", "label": "contains", "title": "contains [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_trust_seals_page", "to": "frontend_application_app_trust_seals_page_metadata", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_productpage", "to": "frontend_application_lib_types", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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", "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_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_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_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_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_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_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_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_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_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_controller", "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", "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", "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", "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_controller", "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", "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", "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_controller", "label": "imports_from", "title": "imports_from [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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": "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_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_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_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_uitexts", "to": "frontend_admin_panel_src_pages_uitexts_group_page_map", "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_groups", "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_page_tabs", "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_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_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_protectedroute", "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_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", "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", "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", "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_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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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", "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_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_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_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_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_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_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_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_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_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": "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_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_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_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_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_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_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_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_admin_admin_module", "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", "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", "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", "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", "label": "imports_from", "title": "imports_from [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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": "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_topbar", "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", "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_sidebar", "to": "frontend_admin_panel_src_components_sidebar_menugroups", "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_sidebar", "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_sidebar", "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", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_usepetstore", "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_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_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_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_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_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_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_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_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_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_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_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_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_searchresultspage", "to": "frontend_application_lib_store_usepetstore_usepetstore", "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_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_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_auth_auth_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_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_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_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_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_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_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_verify_otp_dto", "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", "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", "label": "imports_from", "title": "imports_from [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", "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_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", "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_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_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", "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_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", "to": "backend_src_app_module", "label": "imports_from", "title": "imports_from [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_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_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": "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_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": "ref_src", "label": "extends", "title": "extends [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_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_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_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_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_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_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_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_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": "backend_package", "to": "backend_package_dependencies", "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_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_ioredis", "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_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_passport", "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_bcrypt", "to": "bcrypt", "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_ioredis", "to": "ioredis", "label": "imports", "title": "imports [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_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_passport", "to": "passport", "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_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_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": "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": "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_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_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", "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_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", "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_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_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_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_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_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_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_admin_panel_package_json_tailwindcss", "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_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_application_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_application_package_devdependencies_vitest", "to": "vitest", "label": "imports", "title": "imports [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_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_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_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_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": "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_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_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_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_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": "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_devdependencies", "to": "package_devdependencies_concurrently", "label": "contains", "title": "contains [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_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": "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_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_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_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_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_globals", "to": "backend_package_json_globals", "label": "imports", "title": "imports [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_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_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_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_typescript", "label": "contains", "title": "contains [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": "backend_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": "backend_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_application_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_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_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_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_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_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_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_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_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_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_coupons", "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_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_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_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_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_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_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_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_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_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": "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_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_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_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_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_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_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_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_vite", "to": "vite", "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", "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_orders", "to": "frontend_admin_panel_src_pages_orders_statusstyles", "label": "contains", "title": "contains [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_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_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_shop_page", "to": "frontend_application_app_shop_page_metadata", "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_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_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_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_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_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_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_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_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_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_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_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_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_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_services_productservice", "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_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_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_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_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_catalog_catalogclient", "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_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_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_videoservice", "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_fallback_videos", "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_videoservice", "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_videoservice_videoservice", "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_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_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_format", "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_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_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_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_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_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_verify_otp_dto", "label": "imports_from", "title": "imports_from [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_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_collectcoveragefrom", "to": "ref_t_j_s", "label": "extends", "title": "extends [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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_service", "label": "imports_from", "title": "imports_from [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_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_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_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_sonner", "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_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_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_sonner", "to": "sonner", "label": "imports", "title": "imports [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": "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_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_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_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_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_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_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_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_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_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_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_wholesale_wholesale_module", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "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_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_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_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_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", "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", "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", "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", "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", "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_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_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_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_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": "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_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_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": "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_description", "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_version", "label": "contains", "title": "contains [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": "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_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_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": "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_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_cleanup", "to": "gitea_scripts_with_vpn_stop_vpn", "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_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_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_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": "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_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_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_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_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": "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_urls", "label": "contains", "title": "contains [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_http", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "scripts_start_dev", "to": "scripts_start_dev_spawn", "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_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": "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_services_productservice", "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", "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_page_metadata", "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_metadata", "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_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_wiki_page", "to": "frontend_application_app_wiki_page_metadata", "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_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_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_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_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_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_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_services_productservice", "label": "imports_from", "title": "imports_from [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_products", "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_services_productservice", "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_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_app_blog_page", "to": "frontend_application_app_blog_page_metadata", "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": "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": "frontend_admin_panel_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": "frontend_application_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_typescript", "to": "backend_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", "to": "backend_package_json_typescript", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_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_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_prisma", "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_wiki_terms", "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_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_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": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "to": "frontend_application_public_fonts_vazirmatn_v33_003_authors", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_smartadvisor", "to": "database_schema_products", "label": "conceptually_related_to", "title": "conceptually_related_to [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_store_cartstore", "to": "database_schema_products", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_master_task_backlog", "to": "docs_audit_adr_auth_001", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_phase3_execution_plan", "to": "docs_audit_master_task_backlog", "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": "vazir_font", "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": "backend_uploads_1781288429353_508765350", "to": "docs_02_user_guide_roles", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_store_usepetstore", "to": "database_schema_pets", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "docker_backend_prod", "to": "database_schema_users", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "docs_audit_frontend_integration_requirements", "to": "docs_audit_cross_boundary_dependencies", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "image_pharma_lab", "to": "frontend_application_agents", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "src_store_userstore", "to": "backend_integration_login", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_03_developer_guide_standards", "to": "src_store_userstore", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "docs_audit_05_architectural_audit_findings", "to": "src_store_userstore", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"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": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "to": "dejavu_sans", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "to": "roboto_font", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "frontend_application_public_fonts_vazirmatn_v33_003_readme", "to": "frontend_application_public_fonts_vazirmatn_v33_003_ofl", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
|
|
const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Admin Management Service", "count": 72}, {"cid": 1, "color": "#F28E2B", "label": "Pet Management Controller", "count": 27}, {"cid": 2, "color": "#E15759", "label": "Auth Guards and Roles", "count": 70}, {"cid": 3, "color": "#76B7B2", "label": "JWT Strategy and Address DTOs", "count": 55}, {"cid": 4, "color": "#59A14F", "label": "CMS Content Management", "count": 52}, {"cid": 5, "color": "#EDC948", "label": "Order Creation DTOs", "count": 51}, {"cid": 6, "color": "#B07AA1", "label": "Authentication Controller", "count": 61}, {"cid": 7, "color": "#FF9DA7", "label": "NestJS Application Modules", "count": 47}, {"cid": 8, "color": "#9C755F", "label": "Video Management DTOs", "count": 44}, {"cid": 9, "color": "#BAB0AC", "label": "Public Catalog Pages", "count": 44}, {"cid": 10, "color": "#4E79A7", "label": "Client Layout and Auth Modals", "count": 43}, {"cid": 11, "color": "#F28E2B", "label": "Prisma and TypeScript Config", "count": 41}, {"cid": 12, "color": "#E15759", "label": "Checkout and Dashboard Components", "count": 40}, {"cid": 13, "color": "#76B7B2", "label": "Media and Blog UI Components", "count": 33}, {"cid": 14, "color": "#59A14F", "label": "Product Query DTOs", "count": 38}, {"cid": 15, "color": "#EDC948", "label": "Contact and Prescription Features", "count": 36}, {"cid": 16, "color": "#B07AA1", "label": "Development Tooling Config", "count": 33}, {"cid": 17, "color": "#FF9DA7", "label": "Home Page Client Components", "count": 33}, {"cid": 18, "color": "#9C755F", "label": "Core Services and Auth Logic", "count": 31}, {"cid": 19, "color": "#BAB0AC", "label": "B2B Inquiry Controller", "count": 29}, {"cid": 20, "color": "#4E79A7", "label": "Category Management Controller", "count": 28}, {"cid": 21, "color": "#F28E2B", "label": "Banner Management Controller", "count": 27}, {"cid": 22, "color": "#E15759", "label": "Media Upload Controller", "count": 26}, {"cid": 23, "color": "#76B7B2", "label": "Ingredient Management Controller", "count": 26}, {"cid": 24, "color": "#59A14F", "label": "Admin Dashboard Components", "count": 26}, {"cid": 25, "color": "#EDC948", "label": "Admin Blog Service", "count": 29}, {"cid": 26, "color": "#B07AA1", "label": "Pet DTOs and Controller", "count": 19}, {"cid": 27, "color": "#FF9DA7", "label": "Prescription Review Controller", "count": 24}, {"cid": 28, "color": "#9C755F", "label": "Smart Advisor Controller", "count": 24}, {"cid": 29, "color": "#BAB0AC", "label": "Testimonials Management Controller", "count": 24}, {"cid": 30, "color": "#4E79A7", "label": "Admin Sidebar and Layout", "count": 24}, {"cid": 31, "color": "#F28E2B", "label": "Admin Settings Managers", "count": 37}, {"cid": 32, "color": "#E15759", "label": "User Profile and Success Pages", "count": 24}, {"cid": 33, "color": "#76B7B2", "label": "Redis and Admin Services", "count": 17}, {"cid": 34, "color": "#59A14F", "label": "Global Exception Filters", "count": 23}, {"cid": 35, "color": "#EDC948", "label": "Contact and SMS Modules", "count": 30}, {"cid": 36, "color": "#B07AA1", "label": "Backend TypeScript Config", "count": 23}, {"cid": 37, "color": "#FF9DA7", "label": "App TypeScript Config", "count": 23}, {"cid": 38, "color": "#9C755F", "label": "CMS and Media Modals", "count": 26}, {"cid": 39, "color": "#BAB0AC", "label": "Backend Dependencies", "count": 21}, {"cid": 40, "color": "#4E79A7", "label": "Node TypeScript Config", "count": 21}, {"cid": 41, "color": "#F28E2B", "label": "Admin Blog Controller", "count": 20}, {"cid": 42, "color": "#E15759", "label": "Wholesale Controller", "count": 20}, {"cid": 43, "color": "#76B7B2", "label": "Frontend Testing and Styles", "count": 20}, {"cid": 44, "color": "#59A14F", "label": "Generic CRUD Controller", "count": 19}, {"cid": 45, "color": "#EDC948", "label": "SEO and Sitemap Module", "count": 19}, {"cid": 46, "color": "#B07AA1", "label": "Coupon Management UI", "count": 8}, {"cid": 47, "color": "#FF9DA7", "label": "Project Build Scripts", "count": 18}, {"cid": 48, "color": "#9C755F", "label": "Home Data Module", "count": 17}, {"cid": 49, "color": "#BAB0AC", "label": "Linting and PostCSS Config", "count": 16}, {"cid": 50, "color": "#4E79A7", "label": "Database Seeding Logic", "count": 16}, {"cid": 51, "color": "#F28E2B", "label": "Prisma Database Migrations", "count": 15}, {"cid": 52, "color": "#E15759", "label": "Frontend Core Dependencies", "count": 15}, {"cid": 53, "color": "#76B7B2", "label": "UI Skeleton and Tables", "count": 15}, {"cid": 54, "color": "#59A14F", "label": "Shop Loading States", "count": 15}, {"cid": 55, "color": "#EDC948", "label": "Product Detail Page", "count": 15}, {"cid": 56, "color": "#B07AA1", "label": "Video Gallery Components", "count": 15}, {"cid": 57, "color": "#FF9DA7", "label": "NPM Lifecycle Scripts", "count": 14}, {"cid": 58, "color": "#9C755F", "label": "Pet Management API", "count": 14}, {"cid": 59, "color": "#BAB0AC", "label": "Reporting Service and Controller", "count": 14}, {"cid": 60, "color": "#4E79A7", "label": "Jest Testing Config", "count": 13}, {"cid": 61, "color": "#F28E2B", "label": "Wiki Module and Service", "count": 14}, {"cid": 62, "color": "#E15759", "label": "Blog Module and Service", "count": 22}, {"cid": 63, "color": "#76B7B2", "label": "Public Blog Controller", "count": 12}, {"cid": 64, "color": "#59A14F", "label": "SMS Notification Service", "count": 21}, {"cid": 65, "color": "#EDC948", "label": "OpenAPI and Metrics", "count": 17}, {"cid": 66, "color": "#B07AA1", "label": "App Health Controller", "count": 11}, {"cid": 67, "color": "#FF9DA7", "label": "Frontend UI Dependencies", "count": 14}, {"cid": 68, "color": "#9C755F", "label": "Pet Business Logic", "count": 10}, {"cid": 69, "color": "#BAB0AC", "label": "Integrity Validation Scripts", "count": 10}, {"cid": 70, "color": "#4E79A7", "label": "Admin Panel Package Config", "count": 10}, {"cid": 71, "color": "#F28E2B", "label": "Analytics and Report Charts", "count": 10}, {"cid": 72, "color": "#E15759", "label": "Task Orchestration Scripts", "count": 9}, {"cid": 73, "color": "#76B7B2", "label": "Backend Package Config", "count": 9}, {"cid": 74, "color": "#59A14F", "label": "Health Log DTOs", "count": 7}, {"cid": 75, "color": "#EDC948", "label": "React Error Boundary", "count": 9}, {"cid": 76, "color": "#B07AA1", "label": "Application Package Config", "count": 9}, {"cid": 77, "color": "#FF9DA7", "label": "Generic Resource Controller", "count": 8}, {"cid": 78, "color": "#9C755F", "label": "Error and Not Found Pages", "count": 7}, {"cid": 79, "color": "#BAB0AC", "label": "VPN Utility Scripts", "count": 7}, {"cid": 80, "color": "#4E79A7", "label": "NestJS CLI Config", "count": 6}, {"cid": 81, "color": "#F28E2B", "label": "Seed TypeScript Config", "count": 6}, {"cid": 82, "color": "#E15759", "label": "Order Business Logic", "count": 6}, {"cid": 83, "color": "#76B7B2", "label": "Browser Utility Scripts", "count": 6}, {"cid": 84, "color": "#59A14F", "label": "Dev Server Startup", "count": 6}, {"cid": 85, "color": "#EDC948", "label": "Architecture and Security Docs", "count": 5}, {"cid": 86, "color": "#B07AA1", "label": "Pagination API Schemas", "count": 5}, {"cid": 87, "color": "#FF9DA7", "label": "Font Assets and Licenses", "count": 5}, {"cid": 88, "color": "#9C755F", "label": "Ledger Rebuild Scripts", "count": 5}, {"cid": 89, "color": "#BAB0AC", "label": "Evidence Validation Scripts", "count": 5}, {"cid": 90, "color": "#4E79A7", "label": "Blog Listing Page", "count": 5}, {"cid": 91, "color": "#F28E2B", "label": "Blog Post Detail Page", "count": 5}, {"cid": 92, "color": "#E15759", "label": "Node Type Definitions", "count": 4}, {"cid": 93, "color": "#76B7B2", "label": "TypeScript Language", "count": 4}, {"cid": 94, "color": "#59A14F", "label": "UI Text Seeding", "count": 4}, {"cid": 95, "color": "#EDC948", "label": "Wiki Terms Seeding", "count": 4}, {"cid": 96, "color": "#B07AA1", "label": "Blog Management DTOs", "count": 4}, {"cid": 97, "color": "#FF9DA7", "label": "Home Management DTOs", "count": 4}, {"cid": 98, "color": "#9C755F", "label": "Wiki Management DTOs", "count": 4}, {"cid": 99, "color": "#BAB0AC", "label": "Wiki Page Routing", "count": 4}, {"cid": 100, "color": "#4E79A7", "label": "Network Status Banner", "count": 4}, {"cid": 101, "color": "#F28E2B", "label": "Docker Deployment Scripts", "count": 4}, {"cid": 102, "color": "#E15759", "label": "ESLint Core Configuration", "count": 3}, {"cid": 103, "color": "#76B7B2", "label": "TypeScript ESLint Support", "count": 3}, {"cid": 104, "color": "#59A14F", "label": "Database Migration Scripts", "count": 3}, {"cid": 105, "color": "#EDC948", "label": "Scientific Terms Schema", "count": 3}, {"cid": 106, "color": "#B07AA1", "label": "Blog Data Seeding", "count": 3}, {"cid": 107, "color": "#FF9DA7", "label": "Custom Data Seeding", "count": 3}, {"cid": 108, "color": "#9C755F", "label": "Product and Cart Components", "count": 3}, {"cid": 109, "color": "#BAB0AC", "label": "Auth Architecture and Planning", "count": 3}, {"cid": 110, "color": "#4E79A7", "label": "Build Manifest Generation", "count": 3}, {"cid": 111, "color": "#F28E2B", "label": "Classification Data Generation", "count": 3}, {"cid": 112, "color": "#E15759", "label": "Evidence Data Generation", "count": 3}, {"cid": 113, "color": "#76B7B2", "label": "Ledger Data Generation", "count": 3}, {"cid": 114, "color": "#59A14F", "label": "Manifest Data Generation", "count": 3}, {"cid": 115, "color": "#EDC948", "label": "Honest Manifest Synchronization", "count": 3}, {"cid": 116, "color": "#B07AA1", "label": "Manifest Entry Synchronization", "count": 3}, {"cid": 117, "color": "#FF9DA7", "label": "Pet Reminder DTOs", "count": 7}, {"cid": 118, "color": "#9C755F", "label": "React DOM Library", "count": 3}, {"cid": 119, "color": "#BAB0AC", "label": "Zustand State Management", "count": 3}, {"cid": 120, "color": "#4E79A7", "label": "Tailwind PostCSS Plugin", "count": 3}, {"cid": 121, "color": "#F28E2B", "label": "React DOM Type Definitions", "count": 3}, {"cid": 122, "color": "#E15759", "label": "Admin Panel TSConfig", "count": 3}, {"cid": 123, "color": "#76B7B2", "label": "About Page Component", "count": 3}, {"cid": 124, "color": "#59A14F", "label": "Privacy Page Component", "count": 3}, {"cid": 125, "color": "#EDC948", "label": "Next.js Security Configuration", "count": 3}, {"cid": 126, "color": "#B07AA1", "label": "Typography and Font Assets", "count": 3}, {"cid": 127, "color": "#FF9DA7", "label": "Bcrypt Password Hashing", "count": 2}, {"cid": 128, "color": "#9C755F", "label": "Helmet Security Middleware", "count": 2}, {"cid": 129, "color": "#BAB0AC", "label": "Reflect Metadata Library", "count": 2}, {"cid": 130, "color": "#4E79A7", "label": "NestJS Core Framework", "count": 2}, {"cid": 131, "color": "#F28E2B", "label": "NestJS JWT Authentication", "count": 2}, {"cid": 132, "color": "#E15759", "label": "NestJS Swagger Documentation", "count": 2}, {"cid": 133, "color": "#76B7B2", "label": "NestJS Rate Limiting", "count": 2}, {"cid": 134, "color": "#59A14F", "label": "Passport JWT Strategy", "count": 2}, {"cid": 135, "color": "#EDC948", "label": "Prisma Client Library", "count": 2}, {"cid": 136, "color": "#B07AA1", "label": "Swagger UI Express", "count": 2}, {"cid": 137, "color": "#FF9DA7", "label": "NestJS CLI Tooling", "count": 2}, {"cid": 138, "color": "#9C755F", "label": "NestJS Testing Utilities", "count": 2}, {"cid": 139, "color": "#BAB0AC", "label": "TypeScript Jest Integration", "count": 2}, {"cid": 140, "color": "#4E79A7", "label": "Bcrypt Type Definitions", "count": 2}, {"cid": 141, "color": "#F28E2B", "label": "Passport JWT Type Definitions", "count": 2}, {"cid": 142, "color": "#E15759", "label": "Supertest Type Definitions", "count": 2}, {"cid": 143, "color": "#76B7B2", "label": "Blog Entity Model", "count": 2}, {"cid": 144, "color": "#59A14F", "label": "Home Entity Model", "count": 2}, {"cid": 145, "color": "#EDC948", "label": "Wiki Entity Model", "count": 2}, {"cid": 146, "color": "#B07AA1", "label": "User Profile Management", "count": 2}, {"cid": 147, "color": "#FF9DA7", "label": "Pet Store State", "count": 2}, {"cid": 148, "color": "#9C755F", "label": "User Database and Infrastructure", "count": 2}, {"cid": 149, "color": "#BAB0AC", "label": "API and Frontend Specifications", "count": 2}, {"cid": 150, "color": "#4E79A7", "label": "Brand and Agent Guidelines", "count": 2}, {"cid": 151, "color": "#F28E2B", "label": "Search Engine Robots Config", "count": 2}, {"cid": 152, "color": "#E15759", "label": "Application ESLint Config", "count": 2}, {"cid": 153, "color": "#76B7B2", "label": "PostCSS Configuration", "count": 2}, {"cid": 154, "color": "#59A14F", "label": "Vitest Test Setup", "count": 2}, {"cid": 155, "color": "#EDC948", "label": "Database Backup Script", "count": 2}, {"cid": 156, "color": "#B07AA1", "label": "Application Startup Script", "count": 2}, {"cid": 157, "color": "#FF9DA7", "label": "Axios HTTP Client", "count": 1}, {"cid": 158, "color": "#9C755F", "label": "Backend ESLint Config", "count": 1}, {"cid": 159, "color": "#BAB0AC", "label": "User Logout Endpoint", "count": 1}, {"cid": 160, "color": "#4E79A7", "label": "Company Profile", "count": 1}, {"cid": 161, "color": "#F28E2B", "label": "Project Introduction", "count": 1}, {"cid": 162, "color": "#E15759", "label": "Architecture Route Map", "count": 1}, {"cid": 163, "color": "#76B7B2", "label": "Project Task Backlog", "count": 1}, {"cid": 164, "color": "#59A14F", "label": "Root ESLint Configuration", "count": 1}, {"cid": 165, "color": "#EDC948", "label": "PostCSS Build Config", "count": 1}, {"cid": 166, "color": "#B07AA1", "label": "Tailwind CSS Configuration", "count": 1}, {"cid": 167, "color": "#FF9DA7", "label": "Vite Build Configuration", "count": 1}, {"cid": 168, "color": "#9C755F", "label": "Sahel Font Samples", "count": 1}, {"cid": 169, "color": "#BAB0AC", "label": "Shabnam Font History", "count": 1}, {"cid": 170, "color": "#4E79A7", "label": "Vazirmatn Font History", "count": 1}, {"cid": 171, "color": "#F28E2B", "label": "Vitest Test Configuration", "count": 1}, {"cid": 172, "color": "#E15759", "label": "Variable Font Samples", "count": 1}, {"cid": 173, "color": "#76B7B2", "label": "Shabnam Font Preview", "count": 1}, {"cid": 174, "color": "#59A14F", "label": "Production Docker Setup", "count": 1}, {"cid": 175, "color": "#EDC948", "label": "Staging Docker Setup", "count": 1}, {"cid": 176, "color": "#B07AA1", "label": "Tailwind CSS Library", "count": 1}];
|
|
|
|
// 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 = [{"id": "ecommerce_transaction_flow", "label": "E-commerce Transaction Flow", "nodes": ["src_store_cartstore", "database_schema_products", "backend_integration_login"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.85, "source_file": "BACKEND_INTEGRATION.md"}, {"id": "pet_health_management_flow", "label": "Pet Health Management Flow", "nodes": ["src_store_usepetstore", "database_schema_pets", "readme_smartadvisor"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.9, "source_file": "README.md"}, {"id": "rastikerdar_font_ecosystem", "label": "Rastikerdar Font Ecosystem", "nodes": ["frontend_application_public_fonts_shabnam_font_v5_0_1_readme", "frontend_application_public_fonts_vazirmatn_v33_003_readme", "vazir_font"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 0.95, "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md"}, {"id": "canina_deployment_stack", "label": "Canina Deployment Stack", "nodes": ["scripts_compose_prod", "scripts_compose_stage"], "relation": "form", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "scripts/compose.prod.yml"}];
|
|
// 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> |